Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(51)

Side by Side Diff: runtime/bin/builtin.cc

Issue 3004173002: Revert "Removed Dartium SDK libs" (Closed)
Patch Set: Created 3 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « runtime/bin/builtin.h ('k') | runtime/lib/mirrors.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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},
28 {"dart:indexed_db", indexed_db_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},
29 {"dart:web_gl", web_gl_source_paths_, NULL, NULL, true}, 31 {"dart:web_gl", web_gl_source_paths_, NULL, NULL, true},
30 {"metadata.dart", metadata_source_paths_, NULL, NULL, true}, 32 {"metadata.dart", metadata_source_paths_, NULL, NULL, true},
31 {"dart:web_sql", web_sql_source_paths_, NULL, NULL, true}, 33 {"dart:web_sql", web_sql_source_paths_, NULL, NULL, true},
32 {"dart:svg", svg_source_paths_, NULL, NULL, true}, 34 {"dart:svg", svg_source_paths_, NULL, NULL, true},
33 {"dart:web_audio", web_audio_source_paths_, NULL, NULL, true}, 35 {"dart:web_audio", web_audio_source_paths_, NULL, NULL, true},
34 #endif // defined(DART_NO_SNAPSHOT) 36 #endif // defined(DART_NO_SNAPSHOT)
35 37
36 // End marker. 38 // End marker.
37 {NULL, NULL, NULL, NULL, false}}; 39 {NULL, NULL, NULL, NULL, false}};
38 40
(...skipping 108 matching lines...) Expand 10 before | Expand all | Expand 10 after
147 Dart_Handle url = DartUtils::NewString(builtin_libraries_[id].url_); 149 Dart_Handle url = DartUtils::NewString(builtin_libraries_[id].url_);
148 Dart_Handle library = Dart_LookupLibrary(url); 150 Dart_Handle library = Dart_LookupLibrary(url);
149 if (Dart_IsError(library)) { 151 if (Dart_IsError(library)) {
150 library = LoadLibrary(url, id); 152 library = LoadLibrary(url, id);
151 } 153 }
152 return library; 154 return library;
153 } 155 }
154 156
155 } // namespace bin 157 } // namespace bin
156 } // namespace dart 158 } // namespace dart
OLDNEW
« no previous file with comments | « runtime/bin/builtin.h ('k') | runtime/lib/mirrors.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698