mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-12-04 23:39:02 +08:00
848c8178ce
* [skia] Restore simple msvc toolchain fix
* libgifcodec is gone
* Update abseil-cpp
* Use vcpkg abseil-cpp
* Update wuffs
* Update dawn
* Update spirv deps
* Remove tint
* Update vulkan-tools
* versions
* Drop obsolete patch
* Use github directly
* Revert "Use vcpkg abseil-cpp"
This reverts commit 9b4157c980
.
* Fix dawn
* Build, install, export modules
* Unroll default-features
* Fix comments
* Fix skresources
* Fix manifest
* WIP
* WIP
* Pass-through lib dirs
* Filter link libs
* WIP
* WIP
* Add feature 'modules'
* Fix SkDebugf visibility
* WIP
* WIP
* Rewrite gn install and export
* No pdb for release
* Omit explicit ouput check
* Update modules config
* Disable skparagraph DLL, no dllexport
* Disable icu on shared windows
* Cleanup
* Cleanup
* Enable android CI
* Android
* Don't export standard libraries
* Disable FontConfigInterface on windows
27 lines
903 B
Diff
27 lines
903 B
Diff
diff --git a/src/dawn/native/BUILD.gn b/src/dawn/native/BUILD.gn
|
|
index 24853ced..064b839b 100644
|
|
--- a/src/dawn/native/BUILD.gn
|
|
+++ b/src/dawn/native/BUILD.gn
|
|
@@ -882,6 +882,10 @@ dawn_json_generator("webgpu_dawn_native_proc_gen") {
|
|
target = "webgpu_dawn_native_proc"
|
|
outputs = [ "src/dawn/native/webgpu_dawn_native_proc.cpp" ]
|
|
}
|
|
+source_set("webgpu_dawn_native_proc_gen_sources") {
|
|
+ sources = get_target_outputs(":webgpu_dawn_native_proc_gen")
|
|
+ deps = [ ":webgpu_dawn_native_proc_gen" ]
|
|
+}
|
|
|
|
dawn_component("webgpu_dawn") {
|
|
# For a single library - build `webgpu_dawn_shared` with GN args:
|
|
@@ -901,9 +905,8 @@ dawn_component("webgpu_dawn") {
|
|
DEFINE_PREFIX = "WGPU"
|
|
output_name = "webgpu_dawn"
|
|
|
|
- sources = get_target_outputs(":webgpu_dawn_native_proc_gen")
|
|
deps = [
|
|
":static",
|
|
- ":webgpu_dawn_native_proc_gen",
|
|
+ ":webgpu_dawn_native_proc_gen_sources",
|
|
]
|
|
}
|