| 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 26 matching lines...) Expand all Loading... |
| 37 "lib/compiler/implementation/lib/interceptors.dart", isInternal: true), | 37 "lib/compiler/implementation/lib/interceptors.dart", isInternal: true), |
| 38 "crypto": const LibraryInfo( | 38 "crypto": const LibraryInfo( |
| 39 "lib/crypto/crypto.dart"), | 39 "lib/crypto/crypto.dart"), |
| 40 "dom_deprecated": const LibraryInfo( | 40 "dom_deprecated": const LibraryInfo( |
| 41 "lib/dom/dart2js/dom_dart2js.dart", isInternal: true), | 41 "lib/dom/dart2js/dom_dart2js.dart", isInternal: true), |
| 42 "html": const LibraryInfo( | 42 "html": const LibraryInfo( |
| 43 "lib/html/dart2js/html_dart2js.dart"), | 43 "lib/html/dart2js/html_dart2js.dart"), |
| 44 "io": const LibraryInfo( | 44 "io": const LibraryInfo( |
| 45 "lib/compiler/implementation/lib/io.dart"), | 45 "lib/compiler/implementation/lib/io.dart"), |
| 46 "isolate": const LibraryInfo( | 46 "isolate": const LibraryInfo( |
| 47 "lib/isolate/isolate_dart2js.dart"), | 47 "lib/isolate/isolate.dart", |
| 48 "lib/compiler/implementation/lib/isolate_patch.dart"), |
| 48 "json": const LibraryInfo("lib/json/json.dart"), | 49 "json": const LibraryInfo("lib/json/json.dart"), |
| 49 "math": const LibraryInfo( | 50 "math": const LibraryInfo( |
| 50 "lib/math/math.dart", | 51 "lib/math/math.dart", |
| 51 "lib/compiler/implementation/lib/math_patch.dart", isInternal: true), | 52 "lib/compiler/implementation/lib/math_patch.dart", isInternal: true), |
| 52 "uri": const LibraryInfo("lib/uri/uri.dart"), | 53 "uri": const LibraryInfo("lib/uri/uri.dart"), |
| 53 "utf": const LibraryInfo("lib/utf/utf.dart"), | 54 "utf": const LibraryInfo("lib/utf/utf.dart"), |
| 54 "web": const LibraryInfo("lib/web/web.dart"), | 55 "web": const LibraryInfo("lib/web/web.dart"), |
| 55 }; | 56 }; |
| OLD | NEW |