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

Unified Diff: lib/html/scripts/systembase.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/dartdomgenerator.py ('k') | lib/html/scripts/systemhtml.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: lib/html/scripts/systembase.py
diff --git a/lib/html/scripts/systembase.py b/lib/html/scripts/systembase.py
index a63cf7ce87fc5166cbb2ab249ee76fc97ec28e71..956038f413273770b453e84d34b5e099ff3e4ed0 100644
--- a/lib/html/scripts/systembase.py
+++ b/lib/html/scripts/systembase.py
@@ -31,6 +31,7 @@ class System(object):
self._type_registry = options.type_registry
self._renamer = options.renamer
self._output_dir = options.output_dir
+ self._auxiliary_dir = options.auxiliary_dir
def ProcessInterface(self, interface):
"""Processes an interface that is not a callback function."""
@@ -217,13 +218,14 @@ class BaseGenerator(object):
class GeneratorOptions(object):
def __init__(self, templates, database, emitters, type_registry, renamer,
- output_dir):
+ output_dir, auxiliary_dir):
self.templates = templates
self.database = database
self.emitters = emitters
self.type_registry = type_registry
self.renamer = renamer
self.output_dir = output_dir
+ self.auxiliary_dir = auxiliary_dir
def IsReadOnly(attribute):
« no previous file with comments | « lib/html/scripts/dartdomgenerator.py ('k') | lib/html/scripts/systemhtml.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698