From 717fbbf1838741294b1c91c61847da78a7a0ea63 Mon Sep 17 00:00:00 2001 From: Corentin Wallez Date: Mon, 15 Mar 2021 10:40:01 +0000 Subject: [PATCH] BUILD.gn: use public_deps for the proxy group. Otherwise the public_configs of the proxied targets don't correctly get propagated, causing Dawn to fail compilation due to missing include directories. Bug: 706 Change-Id: Ib8acfb06105e77ad005c3900975e8173d85dcf32 Reviewed-on: https://dawn-review.googlesource.com/c/tint/+/44680 Auto-Submit: Corentin Wallez Commit-Queue: Ben Clayton Reviewed-by: Ben Clayton --- BUILD.gn | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/BUILD.gn b/BUILD.gn index 39e23712587..bec67c865bd 100644 --- a/BUILD.gn +++ b/BUILD.gn @@ -18,7 +18,7 @@ import("tint_overrides_with_defaults.gni") # Temporary group to not break dependents while they rename their Tint GN # targets group("libtint") { - deps = [ "src:libtint" ] + public_deps = [ "src:libtint" ] } # This target is built when no specific target is specified on the command line.