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"