| 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_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}, |
| 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}, |
| 30 {"cached_patches.dart", cached_patches_source_paths_, NULL, NULL, true}, |
| 31 {"dart:web_gl", web_gl_source_paths_, NULL, NULL, true}, |
| 25 {"metadata.dart", metadata_source_paths_, NULL, NULL, true}, | 32 {"metadata.dart", metadata_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}, |
| 35 {"dart:web_audio", web_audio_source_paths_, NULL, NULL, true}, |
| 26 #endif // defined(DART_NO_SNAPSHOT) | 36 #endif // defined(DART_NO_SNAPSHOT) |
| 27 | 37 |
| 28 // End marker. | 38 // End marker. |
| 29 {NULL, NULL, NULL, NULL, false}}; | 39 {NULL, NULL, NULL, NULL, false}}; |
| 30 | 40 |
| 31 Dart_Port Builtin::load_port_ = ILLEGAL_PORT; | 41 Dart_Port Builtin::load_port_ = ILLEGAL_PORT; |
| 32 const int Builtin::num_libs_ = | 42 const int Builtin::num_libs_ = |
| 33 sizeof(Builtin::builtin_libraries_) / sizeof(Builtin::builtin_lib_props); | 43 sizeof(Builtin::builtin_libraries_) / sizeof(Builtin::builtin_lib_props); |
| 34 | 44 |
| 35 // Patch all the specified patch files in the array 'patch_files' into the | 45 // Patch all the specified patch files in the array 'patch_files' into the |
| (...skipping 103 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 139 Dart_Handle url = DartUtils::NewString(builtin_libraries_[id].url_); | 149 Dart_Handle url = DartUtils::NewString(builtin_libraries_[id].url_); |
| 140 Dart_Handle library = Dart_LookupLibrary(url); | 150 Dart_Handle library = Dart_LookupLibrary(url); |
| 141 if (Dart_IsError(library)) { | 151 if (Dart_IsError(library)) { |
| 142 library = LoadLibrary(url, id); | 152 library = LoadLibrary(url, id); |
| 143 } | 153 } |
| 144 return library; | 154 return library; |
| 145 } | 155 } |
| 146 | 156 |
| 147 } // namespace bin | 157 } // namespace bin |
| 148 } // namespace dart | 158 } // namespace dart |
| OLD | NEW |