diff --git a/DEPS b/DEPS index 13fdd9c3f0a..8099cf078dc 100644 --- a/DEPS +++ b/DEPS @@ -25,7 +25,7 @@ vars = { # Note: When updating the Dart revision, ensure that all entries that are # dependencies of dart are also updated - 'dart_revision': '2da9b9ce0a786c9dc7742a1045ed5b326c73076d', + 'dart_revision': '533a6ecce71b4b42ab887df60af3c04682699477', 'dart_observatory_packages_revision': '5c199c5954146747f75ed127871207718dc87786', 'dart_root_certificates_revision': 'c3a41df63afacec62fcb8135196177e35fe72f71', diff --git a/sky/engine/core/script/dart_init.cc b/sky/engine/core/script/dart_init.cc index 749b48ee9a8..a29c4e91a4b 100644 --- a/sky/engine/core/script/dart_init.cc +++ b/sky/engine/core/script/dart_init.cc @@ -219,7 +219,11 @@ void InitDartVM() { nullptr, // Isolate interrupt callback. UnhandledExceptionCallback, IsolateShutdownCallback, // File IO callbacks. - nullptr, nullptr, nullptr, nullptr, nullptr) == nullptr); + nullptr, nullptr, nullptr, nullptr, + // Entroy source + nullptr, + // VM service assets archive + nullptr) == nullptr); // Wait for load port- ensures handle watcher and service isolates are // running. Dart_ServiceWaitForLoadPort(); diff --git a/sky/tools/sky_snapshot/vm.cc b/sky/tools/sky_snapshot/vm.cc index cf3e2aff0ec..3f2febd3b64 100644 --- a/sky/tools/sky_snapshot/vm.cc +++ b/sky/tools/sky_snapshot/vm.cc @@ -21,7 +21,7 @@ void InitDartVM() { CHECK(Dart_SetVMFlags(arraysize(kDartArgs), kDartArgs)); CHECK(Dart_Initialize(blink::kDartVmIsolateSnapshotBuffer, nullptr, nullptr, nullptr, nullptr, nullptr, nullptr, nullptr, nullptr, - nullptr, nullptr) == nullptr); + nullptr, nullptr, nullptr) == nullptr); } Dart_Isolate CreateDartIsolate() {