- 02 Sep, 2020 8 commits
-
-
Jenn Magder authored
-
Nan Kim authored
-
Jenn Magder authored
This reverts commit 4fde217d.
-
Christopher Fujino authored
-
xubaolin authored
-
Yuqian Li authored
-
Pedro Massango authored
-
Jenn Magder authored
-
- 01 Sep, 2020 10 commits
-
-
Dan Field authored
They appear to be passing now.
-
stuartmorgan authored
Almost all of the flag setup on Linux, macOS, and Windows should be identical; this pulls that common setup to a shared method. This adds support for several flags on macOS that have all the necessary plumbing already in place due to shared backend code, but were never enabled. Fixes https://github.com/flutter/flutter/issues/64944
-
Dan Field authored
Fix typo.
-
stuartmorgan authored
People frequently assume they can run the executable they find at the top level of the build directory, and don't understand why they get resource errors from the engine. To avoid that, this puts the unbundled copy of the executable in a subdirectory with a name that should warn people away from running it. Fixes #64963
-
Tim Sneath authored
-
Ming Lyu (CareF) authored
This reverts commit df833986.
-
engine-flutter-autoroll authored
-
Ming Lyu (CareF) authored
-
Jonah Williams authored
-
Jonah Williams authored
[flutter_tools] adjust index.html caching and insert cache busting URL in to main.dart.js/sw request (#64976) Attempt to bypass aggressive CDN by requesting main.dart.js/sw.js with a query param and defaulting index.html to online first. This will not stop aggressive CDN caching of the index.html #64968
-
- 31 Aug, 2020 22 commits
-
-
Mehmet Fidanboylu authored
This reverts commit c8f234d3.
-
Jonah Williams authored
More work towards #62886
-
Jonah Williams authored
This is no longer used, in favor of just attempting to unzip and handling the exception.
-
Jonah Williams authored
Previous benchmarks have established the performance of sync*. Additionally, why allocate a list when you don't need to? Since these APIs are private, they can be re-arranged a bit to avoid creating as many lists. Will probably not have a large effect on benchmarks
-
Jonah Williams authored
Exit the tool after a repeated network error to download. previously we were returning null and continuing on, leading to a ProcessException when we unzipped a missing file.
-
engine-flutter-autoroll authored
-
Tong Wu authored
-
Jonah Williams authored
-
Dan Field authored
-
Dan Field authored
b/150295238 has been resolved for a while now.
-
Casey Hillers authored
-
engine-flutter-autoroll authored
-
ekibun authored
add different workload & add -products * to vswhere calls to check both Visual Studio IDE and standalone Build Tools. (#64251)
-
James Clarke authored
-
engine-flutter-autoroll authored
-
Chris Bracken authored
Flutter's `moreOrLessEquals` has a few advantages over `closeTo` from the `matcher` package: * It emits the epsilon value in the test result on failure. * It uses a named parameter for epsilon, which improves readability at the call site. * It has a reasonable default for epsilon in cases where something more specific isn't required. Using it also has the nice property that it aids in its own discovery when when people go looking for such functionality in new tests. This change also includes a couple unrelated whitespace formatting cleanups.
-
Shi-Hao Hong authored
* synthetic packages by default in gen_l10n tool * Refactor default path for synthetic package * Remove unused import * Code cleanup * Further improvements to help text * Refactor synthetic package path * Remove newlines * Test cleanup * clean up logic in inputs and outputs list function * Update l10n.yaml usage * only add option if value is non-null * Update stocks app as proof of concept for synthetic package usage * Address nits * print pubspec contents * add print statements * Do not allow null value for useSyntheticPackage * + * + * + * + * Cleanup * Add test * Fix text * Dont parse pubspec directly * Test using context * WIP: generate synthetic packages on pub get -- needs tests * Allow null value * Update null handling * Refactor to properly handle null case * Fix yamlMap condition * Fix yaml node for real * WIP: struggling to write tests * WIP - take absolute path as an option * Add tests * Use environment project directory for synthetic package generation pathway * Fix typo * Improve help text * Update defaults * Remove unauthorized path import * Fix pathing issues at synthetic package generation * Fix typo in test * Use path.join so projectDir matches up based on OS * Fix Windows pathing in test * Remove unnecessary replaceApp code for projectDir.path * Use globals.fs.currentDirectory.path in resident_runner_test.dart * Fix merge conflict * Add test to ensure that synthetic package is generated on pub get * Fix resident_runner_test.dart tests * Fix tests * Use package:file instead of dart:io * WIP - exploration * Remove synthetic package use from stocks example * Update integration test to not use synthetic packages * Remove trailing whitespace * flutter pub get runs synth package generation * Remove more print statements * Add license header * WIP - minimally working pub.get * Use own MockBuildSystem * Modify test and implementation to be a little cleaner * Fix flutter pub get invocation * Use synthetic packages in stocks app * Revert "Use synthetic packages in stocks app" This reverts commit 45bf24903c3d4a2a5fd5481d7d6bc36c4a348703. * Add environment and buildSystem params to flutter test * Address code review feedback * + * Isolate codegen into its own API * Fix imports * Slight refactor * Add one more test for no l10n.yaml file * Remove unneeded mock class and import in pub_get_test.dart * More code review feedback * Remove unnecessary imports * Remove `return await`s that I missed * use arrow functions instead
-
Chris Bracken authored
moreOrLessEquals is the preferred mechanism for checking that a value is within some error bound epsilon, with default value for epsilon of precisionErrorTolerance. This patch replaces instances of closeTo using precisionErrorTolerance.
-
engine-flutter-autoroll authored
-
Chris Bracken authored
Several of our tests make use of numbers without an exact floating point representation (frequently 0.x where x!=5) which, when scaled, also scale the error. The end result is that some of these tests currently implicitly rely on an implementation detail of floating point math and are sensitive to differences in the ~15th decimal place. This patch reduces the sensitivity of some of these tests, checking values using `moreOrLessEquals` from the flutter_test package rather than requiring en exact match.
-
engine-flutter-autoroll authored
-