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

Unified Diff: lib/html/scripts/systemhtml.py

Issue 10950007: Fix generating html_dart2js.dart and html_dartium.dart files. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 3 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 | « lib/html/scripts/systembase.py ('k') | lib/html/scripts/systemnative.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: lib/html/scripts/systemhtml.py
diff --git a/lib/html/scripts/systemhtml.py b/lib/html/scripts/systemhtml.py
index d78ea00b72fafe556410a67cc04d0aa5e993472a..3d290279942712f3007f3134013a13de74d7382d 100644
--- a/lib/html/scripts/systemhtml.py
+++ b/lib/html/scripts/systemhtml.py
@@ -1223,10 +1223,12 @@ class HtmlDart2JSSystem(System):
return HtmlDart2JSClassGenerator(self, interface)
def GenerateLibraries(self, dart_files):
+ auxiliary_dir = os.path.relpath(self._auxiliary_dir, self._output_dir)
self._GenerateLibFile(
'html_dart2js.darttemplate',
os.path.join(self._output_dir, 'html_dart2js.dart'),
- dart_files)
+ dart_files,
+ AUXILIARY_DIR=systembase.MassagePath(auxiliary_dir))
def Finish(self):
pass
« no previous file with comments | « lib/html/scripts/systembase.py ('k') | lib/html/scripts/systemnative.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698