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

Unified Diff: sdk/lib/_internal/compiler/implementation/compiler.dart

Issue 11280103: Splitting out the Audio library. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Changed dart:audio to dart:web_audio 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/_internal/compiler/implementation/compiler.dart
diff --git a/sdk/lib/_internal/compiler/implementation/compiler.dart b/sdk/lib/_internal/compiler/implementation/compiler.dart
index e4168043e997239604dbdbb60437fd584ee8c811..7e8c446a3e0d973c621191e1ee3c6fb3fda9ec71 100644
--- a/sdk/lib/_internal/compiler/implementation/compiler.dart
+++ b/sdk/lib/_internal/compiler/implementation/compiler.dart
@@ -494,7 +494,8 @@ abstract class Compiler implements DiagnosticListener {
|| libraryName == 'dart:isolate'
|| libraryName == 'dart:math'
|| libraryName == 'dart:html'
- || libraryName == 'dart:svg') {
+ || libraryName == 'dart:svg'
+ || libraryName == 'dart:web_audio') {
Anton Muhin 2012/11/22 03:22:51 just for my education, why <web>_audio? are there
Anton Muhin 2012/11/22 03:22:51 it might be time to switch to a list contains, but
blois 2012/11/27 00:07:45 I assume that there will be an audio for Android o
blois 2012/11/27 00:07:45 Good point, I'd like to do that as a separate CL (
if (libraryName == 'dart:html' || libraryName == 'dart:mirrors') {
// dart:html needs access to convertDartClosureToJS.
// dart:mirrors needs access to the Primitives class.

Powered by Google App Engine
This is Rietveld 408576698