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

Unified Diff: third_party/closure_compiler/runner/build_runner_jar.py

Issue 421253006: Add ChromeCodingConvention.java to Closure Compiler to preserve getInstance() type (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@A_typechecking_about
Patch Set: rebase onto master Created 6 years, 4 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/runner/build_runner_jar.py
diff --git a/third_party/closure_compiler/runner/build_runner_jar.py b/third_party/closure_compiler/runner/build_runner_jar.py
index e9f3a254dbac81fa2892981b743dc3a6b7f415ba..fcd2eec19decd9f7811a896346812f18b557ec44 100755
--- a/third_party/closure_compiler/runner/build_runner_jar.py
+++ b/third_party/closure_compiler/runner/build_runner_jar.py
@@ -27,6 +27,7 @@ src_path = rel_to_abs(src_dir)
def run_and_communicate(command, error_template):
+ print >> sys.stderr, command
proc = subprocess.Popen(command, stdout=subprocess.PIPE, shell=True)
proc.communicate()
if proc.returncode:

Powered by Google App Engine
This is Rietveld 408576698