Skip to content

Commit

Permalink
Roll Dart back to 4dd4fd7 (flutter#4370)
Browse files Browse the repository at this point in the history
  • Loading branch information
zanderso authored Nov 16, 2017
1 parent a5ab583 commit 0e56495
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions DEPS
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ vars = {
# Dart is: https://github.com/dart-lang/sdk/blob/master/DEPS.
# You can use //tools/dart/create_updated_flutter_deps.py to produce
# updated revision list of existing dependencies.
'dart_revision': 'b73110886e12035e6da0bcd97694008f22cc811d',
'dart_revision': '4dd4fd745e588eef64b8d85811d847ab72633cb7',

'dart_args_tag': '0.13.7',
'dart_async_tag': '2.0.0',
Expand All @@ -56,7 +56,7 @@ vars = {
'dart_http_parser_tag': '3.1.1',
'dart_http_tag': '0.11.3+14',
'dart_http_throttle_tag': '1.0.1',
'dart_intl_tag': '0.15.2',
'dart_intl_tag': '0.15.1',
'dart_isolate_tag': '1.1.0',
'dart_json_rpc_2_tag': '2.0.4',
'dart_linter_tag': '0.1.39',
Expand Down
2 changes: 1 addition & 1 deletion build/flutter_app.gni
Original file line number Diff line number Diff line change
Expand Up @@ -257,7 +257,7 @@ template("flutter_aot_app") {
"--url-mapping",
"dart:mozart.internal," + rebase_path(mozart_dart_sdk_ext_lib),
"--url-mapping",
"dart:vmservice_io," + rebase_path(
"dart:vmservice_sky," + rebase_path(
"$dart_root_gen_dir/dart-pkg/sky_engine/sdk_ext/vmservice_io.dart"),

"--entry-points-manifest",
Expand Down
4 changes: 2 additions & 2 deletions runtime/dart_service_isolate.cc
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ bool DartServiceIsolate::Startup(std::string server_ip,
result = Dart_FinalizeLoading(false);
SHUTDOWN_ON_ERROR(result);
} else {
Dart_Handle uri = Dart_NewStringFromCString("dart:vmservice_io");
Dart_Handle uri = Dart_NewStringFromCString("dart:vmservice_sky");
Dart_Handle library = Dart_LookupLibrary(uri);
SHUTDOWN_ON_ERROR(library);
result = Dart_SetRootLibrary(library);
Expand Down Expand Up @@ -187,7 +187,7 @@ Dart_Handle DartServiceIsolate::GetSource(const char* name) {
}

Dart_Handle DartServiceIsolate::LoadScript(const char* name) {
Dart_Handle url = Dart_NewStringFromCString("dart:vmservice_io");
Dart_Handle url = Dart_NewStringFromCString("dart:vmservice_sky");
Dart_Handle source = GetSource(name);
return Dart_LoadScript(url, Dart_Null(), source, 0, 0);
}
Expand Down
2 changes: 1 addition & 1 deletion runtime/dart_vm_entry_points.txt
Original file line number Diff line number Diff line change
Expand Up @@ -34,4 +34,4 @@ dart:ui,SemanticsUpdate,SemanticsUpdate.
dart:ui,SemanticsUpdateBuilder,SemanticsUpdateBuilder.
dart:ui,Shader,Shader.
dart:ui,TextBox,TextBox._
dart:vmservice_io,::,main
dart:vmservice_sky,::,main
2 changes: 1 addition & 1 deletion travis/licenses_golden/licenses_third_party
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Signature: 2825f6905f169b1cbf039c5a6d98594b
Signature: 9a3bc541ecff71120c05366d013e0a66

UNUSED LICENSES:

Expand Down

0 comments on commit 0e56495

Please sign in to comment.