mirror of
https://github.com/flutter/flutter.git
synced 2026-02-20 02:29:02 +08:00
commit
1c19bdbd36
2
DEPS
2
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',
|
||||
|
||||
|
||||
@ -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();
|
||||
|
||||
@ -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() {
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user