Chromium Code Reviews| Index: chrome/browser/resources/vulcanize_gn.py |
| diff --git a/chrome/browser/resources/vulcanize_gn.py b/chrome/browser/resources/vulcanize_gn.py |
| index d492678b17a239e90c8cebfba857fc0e1755704a..5fc332a58c8c4c4d12901051421c5a1d74aba4df 100755 |
| --- a/chrome/browser/resources/vulcanize_gn.py |
| +++ b/chrome/browser/resources/vulcanize_gn.py |
| @@ -155,7 +155,8 @@ def _vulcanize(in_folder, args): |
| 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)), |
|
Dan Beam
2017/02/10 23:14:47
are you going to rebase on calamity@'s "vulcanize
dpapad
2017/02/13 18:53:54
Rebased.
|
| '--redirect', '"/|%s"' % in_path, |
| '--redirect', '"chrome://%s/|%s"' % (args.host, in_path), |
| # TODO(dpapad): Figure out why vulcanize treats the input path |