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

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

Issue 2573943002: WebUI: Vulcanize MD Settings at compile time. (Closed)
Patch Set: Rename cr:settings icon to cr:settings_icon to fix global settings object. Created 3 years, 11 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: chrome/browser/resources/vulcanize_gn.py
diff --git a/chrome/browser/resources/vulcanize_gn.py b/chrome/browser/resources/vulcanize_gn.py
index 0b2df59ac2b0f6ae5b0585090ddc1fcd40f5d4a6..0616c102e61033f573876af2161b4a0ca648574c 100755
--- a/chrome/browser/resources/vulcanize_gn.py
+++ b/chrome/browser/resources/vulcanize_gn.py
@@ -144,7 +144,8 @@ def _vulcanize(in_folder, out_folder, host, html_in_file,
output = _run_node(
[node_modules.PathToVulcanize()] +
_VULCANIZE_BASE_ARGS + _VULCANIZE_REDIRECT_ARGS +
- ['--out-request-list', os.path.join(out_path, _REQUEST_LIST_FILE),
+ ['--out-request-list', os.path.normpath(
+ os.path.join(out_path, _REQUEST_LIST_FILE)),
'--redirect', '"/|%s"' % in_path,
'--redirect', '"chrome://%s/|%s"' % (host, in_path),
# TODO(dpapad): Figure out why vulcanize treats the input path

Powered by Google App Engine
This is Rietveld 408576698