commit | 7fcbe4982e66cbb811faa10f7704c97e5478fbc2 | [log] [tgz] |
---|---|---|
author | Jim Blackler <jimblackler@google.com> | Mon Jun 17 17:47:07 2024 +0000 |
committer | Dawn LUCI CQ <dawn-scoped@luci-project-accounts.iam.gserviceaccount.com> | Mon Jun 17 17:47:07 2024 +0000 |
tree | cd481e880888f99d3c9bfdc2f459ba6e18561d3a | |
parent | 24e5c1303eecf50ff5c010e621ebb44a89b52da1 [diff] |
Remove filtering of Placeholder.cpp file in the bundle that is no longer present. Bug: 345434454 Change-Id: I465499c3eea4674e4718b92413a3d5feb7ee6373 Reviewed-on: https://dawn-review.googlesource.com/c/dawn/+/194140 Commit-Queue: Jim Blackler <jimblackler@google.com> Commit-Queue: Corentin Wallez <cwallez@chromium.org> Auto-Submit: Jim Blackler <jimblackler@google.com> Reviewed-by: Corentin Wallez <cwallez@chromium.org>
diff --git a/tools/android/webgpu/src/main/cpp/BundleLibraries.cmake b/tools/android/webgpu/src/main/cpp/BundleLibraries.cmake index cbc5799..840f6da 100644 --- a/tools/android/webgpu/src/main/cpp/BundleLibraries.cmake +++ b/tools/android/webgpu/src/main/cpp/BundleLibraries.cmake
@@ -53,7 +53,7 @@ foreach(dependency IN LISTS all_dependencies) get_target_property(type ${dependency} TYPE) if(${type} STREQUAL "STATIC_LIBRARY") - list(APPEND all_objects $<FILTER:$<TARGET_OBJECTS:${dependency}>,EXCLUDE,Placeholder\.cpp\.o$>) + list(APPEND all_objects $<TARGET_OBJECTS:${dependency}>) endif() endforeach()