BUILD.gn: Fix libdawn_native missing dep on its own headers

BUG=chromium:904736
BUG=chromium:905442
TBR=kainino@chromium.org

Change-Id: Ie08b9c82f189e12ba42411e492190731daad5aca
Reviewed-on: https://dawn-review.googlesource.com/c/2441
Reviewed-by: Corentin Wallez <cwallez@chromium.org>
Commit-Queue: Corentin Wallez <cwallez@chromium.org>
This commit is contained in:
Corentin Wallez 2018-11-15 12:38:12 +00:00 committed by Commit Bot service account
parent 2ec59d9fcc
commit 69b44ee6a1
1 changed files with 6 additions and 1 deletions

View File

@ -337,6 +337,9 @@ source_set("libdawn_native_sources") {
"${dawn_spirv_tools_dir}:spvtools_val",
"third_party:spirv_cross",
]
public_deps = [
":libdawn_native_headers",
]
# Put the export config public so that dependents use the same declspec.
public_configs = [ ":libdawn_native_export" ]
@ -684,7 +687,9 @@ source_set("libdawn_wire_sources") {
}
shared_library("libdawn_wire") {
deps = [ ":libdawn_wire_sources" ]
deps = [
":libdawn_wire_sources",
]
# Make headers publically visible
public_deps = [