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

Unified Diff: third_party/closure_compiler/compile.py

Issue 2052973002: Get Polymer externs from closure/github (instead of Polymer/bower) (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@roll-closure
Patch Set: revert binaries so we can try this thang Created 4 years, 6 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 | third_party/closure_compiler/compile2.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/closure_compiler/compile.py
diff --git a/third_party/closure_compiler/compile.py b/third_party/closure_compiler/compile.py
index 87d3967479c1f92bc5da5e8076c11d92c7d10612..08b7d5725c0afdcf0e95b7a04baa3e67f93d9351 100755
--- a/third_party/closure_compiler/compile.py
+++ b/third_party/closure_compiler/compile.py
@@ -347,10 +347,7 @@ if __name__ == "__main__":
externs = set(opts.externs or [])
sources = set(opts.sources)
- polymer_externs = os.path.join(os.path.dirname(_CURRENT_DIR), 'polymer',
- 'v1_0', 'components-chromium',
- 'polymer-externs', 'polymer.externs.js')
- externs.add(polymer_externs)
+ externs.add(os.path.join(_CURRENT_DIR, "externs", "polymer-1.0.js"))
checker = Checker(verbose=opts.verbose, strict=opts.strict)
if opts.single_file:
« no previous file with comments | « no previous file | third_party/closure_compiler/compile2.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698