- 15 Jan, 2021 1 commit
-
-
Niklas Schulze authored
-
- 06 Jan, 2021 1 commit
-
-
Ferhat authored
-
- 05 Jan, 2021 1 commit
-
-
Shi-Hao Hong authored
* Reorganize files * Use l10n.yaml instead of command line args
-
- 04 Jan, 2021 1 commit
-
-
Shi-Hao Hong authored
-
- 23 Dec, 2020 1 commit
-
-
Jenn Magder authored
-
- 17 Dec, 2020 1 commit
-
-
Jenn Magder authored
-
- 16 Dec, 2020 1 commit
-
-
xster authored
-
- 15 Dec, 2020 1 commit
-
-
xster authored
-
- 04 Dec, 2020 2 commits
-
-
Jenn Magder authored
-
Shi-Hao Hong authored
-
- 03 Dec, 2020 2 commits
-
-
Ian Hickson authored
In principle this is backwards compatible; I just merged all the classes into one and deprecated everything that became redundant as a result.
-
Jonah Williams authored
-
- 01 Dec, 2020 1 commit
-
-
Jenn Magder authored
-
- 23 Nov, 2020 1 commit
-
-
Jenn Magder authored
-
- 20 Nov, 2020 1 commit
-
-
J-P Nurmi authored
-
- 17 Nov, 2020 1 commit
-
-
Jenn Magder authored
-
- 14 Nov, 2020 1 commit
-
-
Jonah Williams authored
This reverts commit 8749d955.
-
- 13 Nov, 2020 1 commit
-
-
Ian Hickson authored
In principle this is backwards compatible; I just merged all the classes into one and deprecated everything that became redundant as a result.
-
- 12 Nov, 2020 1 commit
-
-
Jenn Magder authored
-
- 11 Nov, 2020 1 commit
-
-
Jonah Williams authored
-
- 10 Nov, 2020 2 commits
-
-
Jonah Williams authored
[flutter_tools] remove most globals from asset system and remove Cache manipulation in unit tests (#70011)
-
Jonah Williams authored
Fixes #69416 Fixes #70121
-
- 07 Nov, 2020 1 commit
-
-
Jonah Williams authored
Instead of loading the use-material-design asset data from a yaml file in the repo, leave it in dart code and simplify. Remove some of the globals, but not enough to update to testWithoutContext
-
- 06 Nov, 2020 1 commit
-
-
Shi-Hao Hong authored
-
- 05 Nov, 2020 2 commits
-
-
Jenn Magder authored
-
Shi-Hao Hong authored
-
- 04 Nov, 2020 1 commit
-
-
Jenn Magder authored
-
- 26 Oct, 2020 1 commit
-
-
Jonah Williams authored
Overhaul of flutter drive in order to deliver a better experience, namely: * flutter run and flutter drive now share more flags, so code paths that were previously only testable on run are now testable on drive. * Removes web-initialize-platform as this is no longer used * flutter drive correctly sets up a logger that shows native exceptions, by connecting to the vm service. * VM service connection now provides access to memory info without launching devtools (only for debug/profile mode) Web changes * Passes on the one test in the repo, otherwise the webdriver code has been isolated as much as possible Additional NNBD related bug fixes: No longer passes --enable-experiment to the test script. (FYI @blasten ). earlier we might have assumed that the flutter gallery benchmarks would be migrated along side the app and flutter driver, but only the app under test needs to be migrated. The test scripts should never be run with the experiment.
-
- 23 Oct, 2020 2 commits
-
-
Jonah Williams authored
There have been some more additional reports of a missing 'package:characters' import after upgrading flutter. This has me concerned that our pub caching logic is incorrect. Instead of the tool attempting to guess when pub should be run, always delegate to pub. Also takes an opportunity to fix the kernel snapshot depending on the .packages or package_config. Due to the generated: date field this causes extra rebuilds. Instead when pub get is run, write out an additional file with just the package contents and version. Fixes #66777 Fixes #65723
-
Jonah Williams authored
Revert "[flutter_tools] refactor drive launch into separate service, split by mobile+desktop and web (#68451)" (#68845) This reverts commit 2e75f52a.
-
- 22 Oct, 2020 1 commit
-
-
Jonah Williams authored
[flutter_tools] refactor drive launch into separate service, split by mobile+desktop and web (#68451) Overhaul of flutter drive in order to deliver a better experience, namely: flutter run and flutter drive now share more flags, so code paths that were previously only testable on run are now testable on drive. Removes web-initialize-platform as this is no longer used flutter drive correctly sets up a logger that shows native exceptions, by connecting to the vm service. VM service connection now provides access to memory info without launching devtools (only for debug/profile mode) Web changes Passes on the one test in the repo, otherwise the webdriver code has been isolated as much as possible Additional NNBD related bug fixes: No longer passes --enable-experiment to the test script. (FYI @blasten ). earlier we might have assumed that the flutter gallery benchmarks would be migrated along side the app and flutter driver, but only the app under test needs to be migrated. The test scripts should never be run with the experiment.
-
- 16 Oct, 2020 1 commit
-
-
Shi-Hao Hong authored
* Generate pubspec.yaml for synthetic package if it did not exist prior
-
- 14 Oct, 2020 2 commits
-
-
Jenn Magder authored
-
Jenn Magder authored
-
- 12 Oct, 2020 1 commit
-
-
Jonah Williams authored
HACKTOBERFEST
-
- 09 Oct, 2020 1 commit
-
-
Jonah Williams authored
Do not upload all assets on initial devFS sync. This should increase the reliability of the initial connection, even in the face of flaky devfs behavior, in addition to a moderate perf improvement. Updates fast-start to build assets as part of the initial bundle Requires flutter/engine#21436 Requires flutter/engine#21586 Requires flutter/engine#21611
-
- 07 Oct, 2020 1 commit
-
-
Jonah Williams authored
Split from #66776 Even if pub does not change the packge_config contents, it will still update a timestamp in one of the fields. This causes unnecessary rebuilds. To fix this, generate an additional file when running pub get that only contains the relevant fields and then update the KernelSnapshot rule to depend on it only.
-
- 06 Oct, 2020 1 commit
-
-
Jonah Williams authored
[flutter_tools] handle case where file is deleted by other program or running on read only volume (#66708) * [flutter_tools] handle case where file is deleted by other program * Add test cases * Update file_system.dart * Update file_system_test.dart * fix import * make a static on ErrorHandligFS * add support for no exit on failure * address comments * update doc comment to file or directory
-
- 05 Oct, 2020 1 commit
-
-
Jonah Williams authored
[flutter_tools] disable source maps by default for release builds, enable for run and with command line arg (#67331) Disables source map production by default for build web. For web builds performed as a part of flutter run --release, enable the source maps, or allow force enabling with --source-maps command line flag. fixes #67328
-
- 03 Oct, 2020 1 commit
-
-
Jonah Williams authored
[null-safety] add integration tests for sound null safety modes, add support for sound null safety in dart2js (#67171) Add integration tests to verify that ddc and dart2js can be built and run in sound mode. Updates dart2js compilation to insert a language version comment into the generated entrypoint if necessary. dart-lang/sdk#42253
-