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()