"Observatory listening on..." is eventually being updated to "Dart VM
Service listening on...". This change allows for parsing the VM service
URI from messages of either format.
See https://github.com/dart-lang/sdk/issues/46756
* Roll Dart SDK from e256855d07ba to a3b62f366529 (4 revisions) (#21809)
* Roll Dart SDK from e655b9a3839e to b58cfe5ab24e (1 revision) (#21920)
* Roll Dart SDK from fc82eeed7df3 to 8be6a08153cc (1 revision) (#22005)
* Roll Dart SDK from fe12b0536f42 to a188781c9fc8 (1 revision) (#22379)
* Roll Skia from 95b5fb9213d7 to 68ac3b9ec3ca (17 revisions) (#22713)
* Roll Dart SDK from 2c74e62a050c to f9760fc12871 (5 revisions) (#22881)
* Roll Dart SDK from 68d1c7504f7d to f166571c7bc4 (1 revision) (#23056)
* Roll Dart SDK from 970d74c42472 to fd72dbb5b82b (1 revision) (#23820)
* Trigger an engine build to re-open the tree (#26056)
This commit is empty and simply triggers a new build to open the tree.
Commit e9ca785106ddc672d945062758800bdf1dd0aa68 was re-built after a
succesful build; upload to the cloud storage bin failed.
* Roll Skia from d9a7c5953df3 to 827bb729a84d (2 revisions) (#26096)
* Roll Dart SDK from d616108772bd to a527411e5100 (0 revision) (#26156)
* Roll Dart SDK from bb9d96ffbafa to 7250fd6379b2 (0 revision) (#26374)
* Roll Dart SDK from 202c42e3395c to 2e9c4305a6aa (1 revision) (#26578)
* Roll buildroot to 275038b8be7196927b0f71770701f3c2c3744860 (#26945)
* [test] empty commit (#27599)
https://flutter-review.googlesource.com/c/infra/+/15660
* Roll Dart SDK from e1414001c93b to 686070850ee3 (1 revision) (#27620)
* Empty commit to apply latest LUCI config (#27767)
* Roll Dart SDK from 3b11f88c96a5 to 976f160b547f (3 revisions) (#29436)
* Empty commit to fix main tree status (#29760)
* Add option to enable serial GC
This option can be used to avoid thread contention issues for the UI thread when running on low power devices with limited number of cores.
* Fix format.
* Added test.
* Add build rule.
* Address review comments.
Co-authored-by: skia-flutter-autoroll <skia-flutter-autoroll@skia.org>
Co-authored-by: Chris Bracken <chris@bracken.jp>
Co-authored-by: Casey Hillers <chillers@google.com>
* Add pkg:smith as a dependency for flutter_frontend_server.
This is needed to roll dart past b453c6bcba
* Update few more packages that depend on internal dart sdk expect package
Create a DisplayList benchmarks dylib on iOS that can be linked to from a test app. To run the benchmarks,
call the exported entrypoint RunBenchmarks(argc, argv).
* Roll benchmark to upstream github @ 431abd149fd76a072f821913c0340137cc755f36
Roll buildroot to bfa04ad85fed176aa909f880ef5c8009c945ba03 to get build files for benchmark
* Roll flutter_packages to b1fdbabbe70caa21566f6a815235d624c716ea16
* Add a task name to parse_and_send.dart's call to FlutterDestination.update()
If a class contains a channel, recreating an instance of this class will lead to the following scenario:
- The new channel is created with the same name and assigned with a callback (which overrides the earlier channel's)
- The earlier class is deallocated, deallocating the earlier channel
This PR fixes the problem where the second channel's callback will be cleared by the first channel's deallocation.