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

Unified Diff: chrome/browser/resources/polymer_css_build_gn.py

Issue 2718243005: Polymer: use polymer-css-build --no-inline-includes (Closed)
Patch Set: Created 3 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 | ui/webui/resources/js/polymer_config.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/resources/polymer_css_build_gn.py
diff --git a/chrome/browser/resources/polymer_css_build_gn.py b/chrome/browser/resources/polymer_css_build_gn.py
index 7a55fde3c1609b140f3ff8832611584d8e4b9d69..14fe7c55389f8adef8d35c71b8841505c0574c6e 100755
--- a/chrome/browser/resources/polymer_css_build_gn.py
+++ b/chrome/browser/resources/polymer_css_build_gn.py
@@ -20,8 +20,8 @@ def _css_build(out_folder, input_files, output_files):
in_paths = map(lambda f: os.path.join(out_path, f), input_files)
out_paths = map(lambda f: os.path.join(out_path, f), output_files)
- node.RunNode([node_modules.PathToPolymerCssBuild(), '-f'] + in_paths +
- ['-o'] + out_paths)
+ args = ['--no-inline-includes', '-f'] + in_paths + ['-o'] + out_paths
+ node.RunNode([node_modules.PathToPolymerCssBuild()] + args)
def main():
« no previous file with comments | « no previous file | ui/webui/resources/js/polymer_config.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698