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

Unified Diff: lib/dom/scripts/dartgenerator.py

Issue 10388085: Merge wrapping system into native system. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: . Created 8 years, 7 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/dom/scripts/dartdomgenerator.py ('k') | lib/dom/scripts/systemnative.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: lib/dom/scripts/dartgenerator.py
diff --git a/lib/dom/scripts/dartgenerator.py b/lib/dom/scripts/dartgenerator.py
index 250583230c9306774143010d028afe99a9131624..261318cc48b41e29962c2d02c99862edf15f2561 100755
--- a/lib/dom/scripts/dartgenerator.py
+++ b/lib/dom/scripts/dartgenerator.py
@@ -18,7 +18,6 @@ from systemfrog import *
from systemhtml import *
from systeminterface import *
from systemnative import *
-from systemwrapping import *
from templateloader import TemplateLoader
_logger = logging.getLogger('dartgenerator')
@@ -258,16 +257,6 @@ class DartGenerator(object):
self._systems.append(native_system)
- if 'wrapping' in systems:
- wrapping_system = WrappingImplementationSystem(
- TemplateLoader(self._template_dir, ['dom/wrapping', 'dom', '']),
- self._database, self._emitters, self._output_dir)
-
- # Makes interface files available for listing in the library for the
- # wrapping implementation.
- wrapping_system._interface_system = interface_system
- self._systems.append(wrapping_system)
-
if 'dummy' in systems:
dummy_system = DummyImplementationSystem(
TemplateLoader(self._template_dir, ['dom/dummy', 'dom', '']),
« no previous file with comments | « lib/dom/scripts/dartdomgenerator.py ('k') | lib/dom/scripts/systemnative.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698