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

Unified Diff: sdk/lib/html/scripts/dartdomgenerator.py

Issue 11280103: Splitting out the Audio library. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Syncing. Created 8 years, 1 month 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
Index: sdk/lib/html/scripts/dartdomgenerator.py
diff --git a/sdk/lib/html/scripts/dartdomgenerator.py b/sdk/lib/html/scripts/dartdomgenerator.py
index 18cba86ef8ee8e39900924f9310b20ded303b48d..69fd59ef4e35c6b0945c92228cfe4852ca860418 100755
--- a/sdk/lib/html/scripts/dartdomgenerator.py
+++ b/sdk/lib/html/scripts/dartdomgenerator.py
@@ -191,12 +191,16 @@ def main():
'../dart2js')
GenerateSingleFile(os.path.join(dart2js_output_dir, 'svg_dart2js.dart'),
'../../svg/dart2js')
+ GenerateSingleFile(os.path.join(dart2js_output_dir, 'audio_dart2js.dart'),
+ '../../audio/dart2js')
if 'htmldartium' in systems:
_logger.info('Generating dartium single files.')
GenerateSingleFile(os.path.join(dartium_output_dir, 'html_dartium.dart'),
'../dartium')
GenerateSingleFile(os.path.join(dartium_output_dir, 'svg_dartium.dart'),
'../../svg/dartium')
+ GenerateSingleFile(os.path.join(dartium_output_dir, 'audio_dartium.dart'),
+ '../../audio/dartium')
if __name__ == '__main__':
sys.exit(main())

Powered by Google App Engine
This is Rietveld 408576698