| 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 23 matching lines...) Expand all Loading... |
| 34 "dom_deprecated": const LibraryPatchPath( | 34 "dom_deprecated": const LibraryPatchPath( |
| 35 "lib/dom/frog/dom_frog.dart", null), | 35 "lib/dom/frog/dom_frog.dart", null), |
| 36 "html": const LibraryPatchPath( | 36 "html": const LibraryPatchPath( |
| 37 "lib/html/frog/html_frog.dart", null), | 37 "lib/html/frog/html_frog.dart", null), |
| 38 "io": const LibraryPatchPath( | 38 "io": const LibraryPatchPath( |
| 39 "lib/compiler/implementation/lib/io.dart", null), | 39 "lib/compiler/implementation/lib/io.dart", null), |
| 40 "isolate": const LibraryPatchPath( | 40 "isolate": const LibraryPatchPath( |
| 41 "lib/isolate/isolate_leg.dart", null), | 41 "lib/isolate/isolate_leg.dart", null), |
| 42 "json": const LibraryPatchPath( | 42 "json": const LibraryPatchPath( |
| 43 "lib/json/json.dart", null), | 43 "lib/json/json.dart", null), |
| 44 "math": const LibraryPatchPath( | |
| 45 "lib/math/math.dart", | |
| 46 "lib/compiler/implementation/lib/math.dartp"), | |
| 47 "uri": const LibraryPatchPath( | 44 "uri": const LibraryPatchPath( |
| 48 "lib/uri/uri.dart", null), | 45 "lib/uri/uri.dart", null), |
| 49 "utf": const LibraryPatchPath( | 46 "utf": const LibraryPatchPath( |
| 50 "lib/utf/utf.dart", null), | 47 "lib/utf/utf.dart", null), |
| 51 "web": const LibraryPatchPath( | 48 "web": const LibraryPatchPath( |
| 52 "lib/web/web.dart", null), | 49 "lib/compiler/implementation/lib/web.dart", |
| 50 "lib/compiler/implementation/lib/web.dartp"), |
| 53 }; | 51 }; |
| OLD | NEW |