Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(2942)

Unified Diff: build/config/BUILDCONFIG.gn

Issue 824373003: Add browser_tests to the GN build. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: More ChromeOS Created 5 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | chrome/browser/BUILD.gn » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: build/config/BUILDCONFIG.gn
diff --git a/build/config/BUILDCONFIG.gn b/build/config/BUILDCONFIG.gn
index 39372d8e09bc05db66d8a11cf371834ba72a6835..7093f78f85736b15e3f312834248ef36751fa589 100644
--- a/build/config/BUILDCONFIG.gn
+++ b/build/config/BUILDCONFIG.gn
@@ -561,6 +561,9 @@ template("component") {
if (defined(invoker.data)) {
data = invoker.data
}
+ if (defined(invoker.data_deps)) {
+ data_deps = invoker.data_deps
+ }
if (defined(invoker.datadeps)) {
datadeps = invoker.datadeps
}
@@ -656,6 +659,9 @@ template("component") {
if (defined(invoker.data)) {
data = invoker.data
}
+ if (defined(invoker.data_deps)) {
+ data_deps = invoker.data_deps
+ }
if (defined(invoker.datadeps)) {
datadeps = invoker.datadeps
}
@@ -758,6 +764,9 @@ template("test") {
if (defined(invoker.data)) {
data = invoker.data
}
+ if (defined(invoker.data_deps)) {
+ data_deps = invoker.data_deps
+ }
if (defined(invoker.datadeps)) {
datadeps = invoker.datadeps
}
@@ -845,6 +854,9 @@ template("test") {
if (defined(invoker.data)) {
data = invoker.data
}
+ if (defined(invoker.data_deps)) {
+ data_deps = invoker.data_deps
+ }
if (defined(invoker.datadeps)) {
datadeps = invoker.datadeps
}
« no previous file with comments | « no previous file | chrome/browser/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698