| 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 #include <stdio.h> | 5 #include <stdio.h> |
| 6 | 6 |
| 7 #include "include/dart_api.h" | 7 #include "include/dart_api.h" |
| 8 | 8 |
| 9 #include "bin/builtin.h" | 9 #include "bin/builtin.h" |
| 10 #include "bin/dartutils.h" | 10 #include "bin/dartutils.h" |
| 11 #include "bin/platform.h" | 11 #include "bin/platform.h" |
| 12 | 12 |
| 13 namespace dart { | 13 namespace dart { |
| 14 namespace bin { | 14 namespace bin { |
| 15 | 15 |
| 16 Builtin::builtin_lib_props Builtin::builtin_libraries_[] = { | 16 Builtin::builtin_lib_props Builtin::builtin_libraries_[] = { |
| 17 /* { url_, source_, patch_url_, patch_source_, has_natives_ } */ | 17 /* { url_, source_, patch_url_, patch_source_, has_natives_ } */ |
| 18 {DartUtils::kBuiltinLibURL, _builtin_source_paths_, NULL, NULL, true}, | 18 {DartUtils::kBuiltinLibURL, _builtin_source_paths_, NULL, NULL, true}, |
| 19 {DartUtils::kIOLibURL, io_source_paths_, DartUtils::kIOLibPatchURL, | 19 {DartUtils::kIOLibURL, io_source_paths_, DartUtils::kIOLibPatchURL, |
| 20 io_patch_paths_, true}, | 20 io_patch_paths_, true}, |
| 21 | 21 |
| 22 #if defined(DART_NO_SNAPSHOT) | 22 #if defined(DART_NO_SNAPSHOT) |
| 23 // Only include these libraries in the dart_bootstrap case for now. | 23 // Only include these libraries in the dart_bootstrap case for now. |
| 24 {"dart:html", html_source_paths_, NULL, NULL, true}, | 24 {"dart:html", html_source_paths_, NULL, NULL, true}, |
| 25 {"dart:html_common", html_common_source_paths_, NULL, NULL, true}, | 25 {"dart:html_common", html_common_source_paths_, NULL, NULL, true}, |
| 26 {"dart:js", js_source_paths_, NULL, NULL, true}, | 26 {"dart:js", js_source_paths_, NULL, NULL, true}, |
| 27 {"dart:js_util", js_util_source_paths_, NULL, NULL, true}, | 27 {"dart:js_util", js_util_source_paths_, NULL, NULL, true}, |
| 28 {"dart:_blink", _blink_source_paths_, NULL, NULL, true}, | |
| 29 {"dart:indexed_db", indexed_db_source_paths_, NULL, NULL, true}, | 28 {"dart:indexed_db", indexed_db_source_paths_, NULL, NULL, true}, |
| 30 {"cached_patches.dart", cached_patches_source_paths_, NULL, NULL, true}, | |
| 31 {"dart:web_gl", web_gl_source_paths_, NULL, NULL, true}, | 29 {"dart:web_gl", web_gl_source_paths_, NULL, NULL, true}, |
| 32 {"metadata.dart", metadata_source_paths_, NULL, NULL, true}, | 30 {"metadata.dart", metadata_source_paths_, NULL, NULL, true}, |
| 33 {"dart:web_sql", web_sql_source_paths_, NULL, NULL, true}, | 31 {"dart:web_sql", web_sql_source_paths_, NULL, NULL, true}, |
| 34 {"dart:svg", svg_source_paths_, NULL, NULL, true}, | 32 {"dart:svg", svg_source_paths_, NULL, NULL, true}, |
| 35 {"dart:web_audio", web_audio_source_paths_, NULL, NULL, true}, | 33 {"dart:web_audio", web_audio_source_paths_, NULL, NULL, true}, |
| 36 #endif // defined(DART_NO_SNAPSHOT) | 34 #endif // defined(DART_NO_SNAPSHOT) |
| 37 | 35 |
| 38 // End marker. | 36 // End marker. |
| 39 {NULL, NULL, NULL, NULL, false}}; | 37 {NULL, NULL, NULL, NULL, false}}; |
| 40 | 38 |
| (...skipping 108 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 149 Dart_Handle url = DartUtils::NewString(builtin_libraries_[id].url_); | 147 Dart_Handle url = DartUtils::NewString(builtin_libraries_[id].url_); |
| 150 Dart_Handle library = Dart_LookupLibrary(url); | 148 Dart_Handle library = Dart_LookupLibrary(url); |
| 151 if (Dart_IsError(library)) { | 149 if (Dart_IsError(library)) { |
| 152 library = LoadLibrary(url, id); | 150 library = LoadLibrary(url, id); |
| 153 } | 151 } |
| 154 return library; | 152 return library; |
| 155 } | 153 } |
| 156 | 154 |
| 157 } // namespace bin | 155 } // namespace bin |
| 158 } // namespace dart | 156 } // namespace dart |
| OLD | NEW |