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

Unified Diff: third_party/closure_compiler/compile_js.gypi

Issue 958383003: Output closure-compiled JavaScript files (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Little bit of clean up Created 5 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
Index: third_party/closure_compiler/compile_js.gypi
diff --git a/third_party/closure_compiler/compile_js.gypi b/third_party/closure_compiler/compile_js.gypi
index 6b191522d22d47dd567d3abee3391c546a47db47..862d66aa4e8fc37e23422f167aa55121a8963145 100644
--- a/third_party/closure_compiler/compile_js.gypi
+++ b/third_party/closure_compiler/compile_js.gypi
@@ -15,6 +15,7 @@
'variables': {
'source_file': '<(_target_name).js',
'out_file': '<(SHARED_INTERMEDIATE_DIR)/closure/<!(python <(CLOSURE_DIR)/build/outputs.py <@(source_file))',
+ 'generate_output%': 0,
'externs%': [],
'depends%': [],
},
@@ -37,6 +38,8 @@
'--depends', '<@(depends)',
'--externs', '<@(externs)',
'--out_file', '<(out_file)',
+ '--generate_output', '<@(generate_output)',
+ '--configuration_name=<(CONFIGURATION_NAME)',
],
'message': 'Compiling <(source_file)',
}

Powered by Google App Engine
This is Rietveld 408576698