From e8e089ad282e27d21c7bb426a73819d67266a3b3 Mon Sep 17 00:00:00 2001 From: Austin Eng Date: Thu, 16 Jul 2020 21:45:06 +0000 Subject: [PATCH] Add missing headers to BUILD.gn and CMakeLists.txt Bug: none Change-Id: I101935b8f75b3cbcf0f79a429f7a850ce62e90e0 Reviewed-on: https://dawn-review.googlesource.com/c/dawn/+/25063 Commit-Queue: Kai Ninomiya Reviewed-by: Kai Ninomiya --- src/common/BUILD.gn | 2 ++ src/common/CMakeLists.txt | 1 + 2 files changed, 3 insertions(+) diff --git a/src/common/BUILD.gn b/src/common/BUILD.gn index bba15f00e6..c924a164e5 100644 --- a/src/common/BUILD.gn +++ b/src/common/BUILD.gn @@ -171,10 +171,12 @@ if (is_win || is_linux || is_mac || is_fuchsia || is_android) { "SerialStorage.h", "SlabAllocator.cpp", "SlabAllocator.h", + "StackContainer.h", "SwapChainUtils.h", "SystemUtils.cpp", "SystemUtils.h", "TypedInteger.h", + "UnderlyingType.h", "ityp_array.h", "ityp_bitset.h", "ityp_span.h", diff --git a/src/common/CMakeLists.txt b/src/common/CMakeLists.txt index 555cc5bb51..a6f320e33f 100644 --- a/src/common/CMakeLists.txt +++ b/src/common/CMakeLists.txt @@ -41,6 +41,7 @@ target_sources(dawn_common PRIVATE "SerialStorage.h" "SlabAllocator.cpp" "SlabAllocator.h" + "StackContainer.h" "SwapChainUtils.h" "SystemUtils.cpp" "SystemUtils.h"