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

Unified Diff: components/test_runner/BUILD.gn

Issue 2460503002: content_shell: Add runtime resources into data_deps. (Closed)
Patch Set: Moving the removal to another CL. Created 4 years, 1 month 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 | content/shell/BUILD.gn » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/test_runner/BUILD.gn
diff --git a/components/test_runner/BUILD.gn b/components/test_runner/BUILD.gn
index e4f8b78fc81dcb282457db838cde0bb2e08d0296..96827b19137c357e7d427a966354bb096e499df8 100644
--- a/components/test_runner/BUILD.gn
+++ b/components/test_runner/BUILD.gn
@@ -130,6 +130,10 @@ component("test_runner") {
"//v8",
]
+ data_deps = [
+ ":resources",
+ ]
+
if (is_mac) {
libs = [ "AppKit.framework" ]
}
@@ -187,18 +191,23 @@ if (is_mac) {
group("resources") {
deps = []
+ data_deps = []
if (is_mac) {
deps += [ ":test_runner_bundle_data" ]
+ data_deps += [ ":test_runner_bundle_data" ]
} else {
deps += [ ":copy_ahem" ]
+ data_deps += [ ":copy_ahem" ]
}
if (use_x11) {
deps += [ ":copy_x11_fonts" ]
+ data_deps += [ ":copy_x11_fonts" ]
}
if (is_android) {
deps += [ ":copy_android_fonts" ]
+ data_deps += [ ":copy_android_fonts" ]
}
}
« no previous file with comments | « no previous file | content/shell/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698