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: client/dom/scripts/systemnative.py

Issue 9585005: Properly escape paths. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Addressing Pavel's comment Created 8 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 | « client/dom/scripts/systembase.py ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: client/dom/scripts/systemnative.py
diff --git a/client/dom/scripts/systemnative.py b/client/dom/scripts/systemnative.py
index d74a916606b16e91cb8d210031aa6a2db6bb3e15..a9582b0f6c1e00f6c9de5656cf32bc6a66870fff 100644
--- a/client/dom/scripts/systemnative.py
+++ b/client/dom/scripts/systemnative.py
@@ -121,14 +121,14 @@ class NativeImplementationSystem(System):
'dom_public.darttemplate',
os.path.join(self._output_dir, 'dom_public.dart'),
self._dom_public_files,
- AUXILIARY_DIR=auxiliary_dir);
+ AUXILIARY_DIR=MassagePath(auxiliary_dir));
# Generate dom_impl.dart.
self._GenerateLibFile(
'dom_impl.darttemplate',
os.path.join(self._output_dir, 'dom_impl.dart'),
self._dom_impl_files,
- AUXILIARY_DIR=auxiliary_dir);
+ AUXILIARY_DIR=MassagePath(auxiliary_dir));
# Generate DartDerivedSourcesXX.cpp.
partitions = 20 # FIXME: this should be configurable.
« no previous file with comments | « client/dom/scripts/systembase.py ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698