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

Unified Diff: build/nocompile.gni

Issue 1698763002: Fix base_nocompile_tests dependency (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 10 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 | build/nocompile.gypi » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: build/nocompile.gni
diff --git a/build/nocompile.gni b/build/nocompile.gni
index 4da66a581da3c9de335c774af10b267b02f9c72c..1b292d79d19f8f226c7b9dea68ff569217652290 100644
--- a/build/nocompile.gni
+++ b/build/nocompile.gni
@@ -69,8 +69,11 @@ if (enable_nocompile_tests) {
action_foreach(nocompile_target) {
script = "//tools/nocompile_driver.py"
sources = invoker.sources
+
+ result_path = "$target_gen_dir/{{source_name_part}}_nc.cc"
+ depfile = "${result_path}.d"
outputs = [
- "$target_gen_dir/{{source_name_part}}_nc.cc",
+ result_path,
]
args = [
"4", # number of compilers to invoke in parallel.
« no previous file with comments | « no previous file | build/nocompile.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698