- 17 Aug, 2020 2 commits
-
-
Jonah Williams authored
This reverts commit b1c17313.
-
zichangg authored
-
- 13 Aug, 2020 1 commit
-
-
Jonah Williams authored
Remove globals and testbed to simplify test cases, using the existing environment configuration. This is some pre-factoring work to make landing #63610 easier
-
- 12 Aug, 2020 1 commit
-
-
Jonah Williams authored
-
- 06 Aug, 2020 1 commit
-
-
Nolan Scobie authored
* Add punctuation for unterminated sentences in doc comments * Addressing review nit
-
- 31 Jul, 2020 1 commit
-
-
Helin Shiah authored
-
- 24 Jul, 2020 1 commit
-
-
Jenn Magder authored
-
- 21 Jul, 2020 1 commit
-
-
Jonah Williams authored
-
- 16 Jul, 2020 2 commits
-
-
Christopher Fujino authored
-
Jonah Williams authored
Add feature flags for android, ios, and fuchsia (on by default). After updating the g3 rollers, the fuchsia feature will be turned off by default. Creates a simpler base type of feature flags for g3 to extend. Updates android, ios, fuchsia workflows to use feature flags check. Removes concept of stable artifacts and checks on flutter version. Fixes #58999 #52859 #12768
-
- 15 Jul, 2020 4 commits
-
-
Danny Tuppeny authored
-
Jonah Williams authored
Allow configuring the flutter_manifest to support a synthetic package, this is done through flutter: generate: true. When running pub get, insert a flutter_gen entry into the packages if it does not already exist. This points to .dart_tool/flutter_gen, which can be updated to contain the generated intl sources (But doesn't currently) Adds an integration test that verifies this code can be run and imported when enabled. Part of #60914
-
zichangg authored
* Fixing patch for coming breaking change in HttpClientRequest * Add noSuchMethod() and comment out abort() * Add ignore: override_on_non_overriding_member
-
Jenn Magder authored
-
- 14 Jul, 2020 1 commit
-
-
Jonah Williams authored
Implements the flutter config feature for #61407 , but does not implement any of the functionality.
-
- 11 Jul, 2020 1 commit
-
-
xster authored
-
- 09 Jul, 2020 1 commit
-
-
Jenn Magder authored
-
- 08 Jul, 2020 1 commit
-
-
Jonah Williams authored
update flutter precache --force to delete all stamp files. In the event that a user is hitting a cache issue, this should be easier than re-downloading all artifacts or manually blowing away the cache. This is probably how it should have worked in the first place
-
- 26 Jun, 2020 1 commit
-
-
Jonah Williams authored
Last batch of test fixes for general shard.
-
- 24 Jun, 2020 1 commit
-
-
Chris Yang authored
-
- 18 Jun, 2020 2 commits
-
-
stuartmorgan authored
On Windows, Process.run assumes the output uses the system codepage by default. This allows specifying it in our wrapper, and sets the encoding for vswhere to UTF-8 since we're passing a flag that forces it to use UTF-8 output. Fixes #53515
-
Jonah Williams authored
Refactors KernelCompiler and ResidentCompiler to no longer use globals (except as a fallback for g3 migration). Improves the compilation error when running flutter test on a package without a flutter_test dependency. Updates machine mode to output trace text to stderr
-
- 08 Jun, 2020 1 commit
-
-
Jonah Williams authored
instead of restricting profile/release mode based on whether the tool thinks the device is an emulator, restrict based on the device target architecture and the requested build mode. Notably, this enables release mode on x86_64 Android emulators, but not x86 emulators since we do not support that as an AOT target. This does not add release mode support for simulators, since this requires us to build and upload artifacts for simulator/x86_64
-
- 04 Jun, 2020 1 commit
-
-
Jonah Williams authored
Make it possible for all FlutterCommands to be global free, by moving instantiation to inside the Zone context. Additionally, provide VerboseLogger and NotifyLogger (daemon) at the top level and remove from command-specific overrides. This allows removing a work around where web devices needed to look up directly from the context in non-test code. Technically the output preferences are still zone injected, but these will be moved soon as they were not being used correctly by the top level command (the injection comes after ArgParser reads the overflow values, causing numerous wrap issues)
-
- 03 Jun, 2020 2 commits
-
-
JustWe authored
-
Jonah Williams authored
Suppress compilation errors on startup so they are not duplicated from the native build step.
-
- 01 Jun, 2020 1 commit
-
-
Jonah Williams authored
removes globals from devFS operations and cleans up testing to be context free. Removes unused and unnecessarily temp directory in testing.
-
- 14 May, 2020 2 commits
-
-
Zachary Anderson authored
-
Jenn Magder authored
-
- 11 May, 2020 1 commit
-
-
Jenn Magder authored
-
- 06 May, 2020 1 commit
-
-
Zachary Anderson authored
-
- 05 May, 2020 3 commits
-
-
Jonah Williams authored
Fixes #56194 Remove caching of FlutterView and poll forever if the list of flutter views is empty. Added test for missing release mode logic.
-
Jonah Williams authored
This reverts commit 209bdcb6.
-
Jonah Williams authored
Remove caching of FlutterView. Perhaps the FlutterView RPC might return an empty list if the VM is not quite up yet? We had some old logic to poll the flutter views RPC for up to 200ms. That doesn't seem like a great approach, so instead we could forgo it entirely and trust that either the views come up before the developer tries to interact, or we crash.
-
- 04 May, 2020 1 commit
-
-
Jenn Magder authored
-
- 01 May, 2020 1 commit
-
-
Jonah Williams authored
-
- 28 Apr, 2020 2 commits
-
-
James D. Lin authored
-
Jonah Williams authored
Move FlutterView and related RPCs to the package:vm_service implementation. Update some getIsolate calls with catchError to match previous behavior. - Updates tests that were previously mocking FlutterViews to use real views - Moves the FlutterView cache from VM to FlutterDevice - Catch SentinelException during Isolate.kill
-
- 27 Apr, 2020 2 commits
-
-
Jenn Magder authored
This reverts commit a18e6361.
-
Jonah Williams authored
-