commit | 7dbfc91d3029ce48bb3705dfdca028825dfa9e0a | [log] [tgz] |
---|---|---|
author | Corentin Wallez <cwallez@chromium.org> | Tue Apr 07 16:16:37 2020 +0000 |
committer | Commit Bot service account <commit-bot@chromium.org> | Tue Apr 07 16:16:37 2020 +0000 |
tree | 98075a4ea0b284896cc1fb957f3c4e0cf86fa588 | |
parent | ce100347eb9dd959d2d0021da08f502fb03d6c7d [diff] |
Fix Dawn's proxy groups to use public_deps instead of deps To do perfect forwarding of GN targets, the proper method is to make a group with public_deps. For example in the following: - Config C - Target T with a public_deps including C - Group G that proxies B - Target T2 that depends on G If G uses deps = [ T ] then T2 won't see C, whereas if G uses public_deps = [ T ] then T2 will dep on T, which will make it dep on C. Bug: chromium:1064305 Change-Id: Iae236150c119b1a4003b957dcacf42e7759a936c Reviewed-on: https://dawn-review.googlesource.com/c/dawn/+/18965 Commit-Queue: Corentin Wallez <cwallez@chromium.org> Reviewed-by: Austin Eng <enga@chromium.org>
Dawn is an open-source and cross-platform implementation of the work-in-progress WebGPU standard. More precisely it implements webgpu.h
that is a one-to-one mapping with the WebGPU IDL. Dawn is meant to be integrated as part of a larger system and is the underlying implementation of WebGPU in Chromium.
Dawn provides several WebGPU building blocks:
webgpu.h
version that Dawn implements.webgpu.h
.Helpful links:
Developer documentation:
User documentation: (TODO, figure out what overlaps with webgpu.h docs)
(TODO)
Apache 2.0 Public License, please see LICENSE.
This is not an officially supported Google product.