| 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_, | 19 { DartUtils::kIOLibURL, io_source_paths_, |
| 20 DartUtils::kIOLibPatchURL, io_patch_paths_, true }, | 20 DartUtils::kIOLibPatchURL, 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 }, | 28 { "dart:_blink", _blink_source_paths_, NULL, NULL, true }, |
| 29 { "dart:indexed_db", indexeddb_source_paths_, NULL, NULL, true }, | 29 { "dart:indexed_db", indexed_db_source_paths_, NULL, NULL, true }, |
| 30 { "cached_patches.dart", cached_patches_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 }, | 31 { "dart:web_gl", web_gl_source_paths_, NULL, NULL, true }, |
| 32 { "metadata.dart", metadata_source_paths_, NULL, NULL, true }, | 32 { "metadata.dart", metadata_source_paths_, NULL, NULL, true }, |
| 33 { "dart:web_sql", websql_source_paths_, NULL, NULL, true }, | 33 { "dart:web_sql", web_sql_source_paths_, NULL, NULL, true }, |
| 34 { "dart:svg", svg_source_paths_, NULL, NULL, true }, | 34 { "dart:svg", svg_source_paths_, NULL, NULL, true }, |
| 35 { "dart:web_audio", webaudio_source_paths_, NULL, NULL, true }, | 35 { "dart:web_audio", web_audio_source_paths_, NULL, NULL, true }, |
| 36 #endif // defined(DART_NO_SNAPSHOT) | 36 #endif // defined(DART_NO_SNAPSHOT) |
| 37 | 37 |
| 38 // End marker. | 38 // End marker. |
| 39 { NULL, NULL, NULL, NULL, false } | 39 { NULL, NULL, NULL, NULL, false } |
| 40 }; | 40 }; |
| 41 | 41 |
| 42 Dart_Port Builtin::load_port_ = ILLEGAL_PORT; | 42 Dart_Port Builtin::load_port_ = ILLEGAL_PORT; |
| 43 const int Builtin::num_libs_ = | 43 const int Builtin::num_libs_ = |
| 44 sizeof(Builtin::builtin_libraries_) / sizeof(Builtin::builtin_lib_props); | 44 sizeof(Builtin::builtin_libraries_) / sizeof(Builtin::builtin_lib_props); |
| 45 | 45 |
| (...skipping 110 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 156 Dart_Handle url = DartUtils::NewString(builtin_libraries_[id].url_); | 156 Dart_Handle url = DartUtils::NewString(builtin_libraries_[id].url_); |
| 157 Dart_Handle library = Dart_LookupLibrary(url); | 157 Dart_Handle library = Dart_LookupLibrary(url); |
| 158 if (Dart_IsError(library)) { | 158 if (Dart_IsError(library)) { |
| 159 library = LoadLibrary(url, id); | 159 library = LoadLibrary(url, id); |
| 160 } | 160 } |
| 161 return library; | 161 return library; |
| 162 } | 162 } |
| 163 | 163 |
| 164 } // namespace bin | 164 } // namespace bin |
| 165 } // namespace dart | 165 } // namespace dart |
| OLD | NEW |