| OLD | NEW |
| 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 Loading... |
| 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 }; |
| OLD | NEW |