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

Side by Side Diff: lib/compiler/implementation/library_map.dart

Issue 10800104: Convert DOM and HTML frog to dart2js. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 8 years, 4 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | lib/compiler/implementation/scanner/source_list.dart » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
2 // for details. All rights reserved. Use of this source code is governed by a 2 // for details. All rights reserved. Use of this source code is governed by a
3 // BSD-style license that can be found in the LICENSE file. 3 // BSD-style license that can be found in the LICENSE file.
4 4
5 // TODO(ahe): Long term, it would probably be better if we do not use 5 // TODO(ahe): Long term, it would probably be better if we do not use
6 // executable code to define the locations of libraries. 6 // executable code to define the locations of libraries.
7 7
8 #library('library_map'); 8 #library('library_map');
9 /** 9 /**
10 * Simple struct holding the path to a library and an optional path 10 * Simple struct holding the path to a library and an optional path
(...skipping 19 matching lines...) Expand all
30 "lib/compiler/implementation/lib/core.dart"), 30 "lib/compiler/implementation/lib/core.dart"),
31 "coreimpl": const LibraryInfo( 31 "coreimpl": const LibraryInfo(
32 "lib/compiler/implementation/lib/coreimpl.dart"), 32 "lib/compiler/implementation/lib/coreimpl.dart"),
33 "_js_helper": const LibraryInfo( 33 "_js_helper": const LibraryInfo(
34 "lib/compiler/implementation/lib/js_helper.dart", isInternal: true), 34 "lib/compiler/implementation/lib/js_helper.dart", isInternal: true),
35 "_interceptors": const LibraryInfo( 35 "_interceptors": const LibraryInfo(
36 "lib/compiler/implementation/lib/interceptors.dart", isInternal: true), 36 "lib/compiler/implementation/lib/interceptors.dart", isInternal: true),
37 "crypto": const LibraryInfo( 37 "crypto": const LibraryInfo(
38 "lib/crypto/crypto.dart"), 38 "lib/crypto/crypto.dart"),
39 "dom_deprecated": const LibraryInfo( 39 "dom_deprecated": const LibraryInfo(
40 "lib/dom/frog/dom_frog.dart", isInternal: true), 40 "lib/dom/dart2js/dom_dart2js.dart", isInternal: true),
41 "html": const LibraryInfo( 41 "html": const LibraryInfo(
42 "lib/html/frog/html_frog.dart"), 42 "lib/html/dart2js/html_dart2js.dart"),
43 "io": const LibraryInfo( 43 "io": const LibraryInfo(
44 "lib/compiler/implementation/lib/io.dart"), 44 "lib/compiler/implementation/lib/io.dart"),
45 "isolate": const LibraryInfo( 45 "isolate": const LibraryInfo(
46 "lib/isolate/isolate_leg.dart"), 46 "lib/isolate/isolate_leg.dart"),
47 "json": const LibraryInfo( 47 "json": const LibraryInfo(
48 "lib/json/json.dart"), 48 "lib/json/json.dart"),
49 "math": const LibraryInfo( 49 "math": const LibraryInfo(
50 "corelib/unified/math/math.dart", 50 "corelib/unified/math/math.dart",
51 "lib/compiler/implementation/lib/math.dartp", isInternal: true), 51 "lib/compiler/implementation/lib/math.dartp", isInternal: true),
52 "uri": const LibraryInfo( 52 "uri": const LibraryInfo(
53 "lib/uri/uri.dart"), 53 "lib/uri/uri.dart"),
54 "utf": const LibraryInfo( 54 "utf": const LibraryInfo(
55 "lib/utf/utf.dart"), 55 "lib/utf/utf.dart"),
56 "web": const LibraryInfo( 56 "web": const LibraryInfo(
57 "lib/web/web.dart"), 57 "lib/web/web.dart"),
58 }; 58 };
OLDNEW
« no previous file with comments | « no previous file | lib/compiler/implementation/scanner/source_list.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698