- 16 Sep, 2020 1 commit
-
-
Michael R Fairhurst authored
-
- 10 Jul, 2020 1 commit
-
-
Jonah Williams authored
Remove global variables from device manager, flutter tester devices and update tests
-
- 07 Jul, 2020 1 commit
-
-
Jonah Williams authored
Remove globals from flutter_tester device and cleanup test case. Not completely gone since the Kernel Builder will still use them, but a good incremental improvement.
-
- 06 May, 2020 1 commit
-
-
Zachary Anderson authored
-
- 20 Apr, 2020 1 commit
-
-
Jonah Williams authored
-
- 16 Mar, 2020 1 commit
-
-
Jenn Magder authored
-
- 05 Feb, 2020 1 commit
-
-
Dan Field authored
-
- 27 Jan, 2020 1 commit
-
-
Dan Field authored
-
- 17 Jan, 2020 1 commit
-
-
Anthony authored
[a11y] Make sure RenderFractionalTranslation updates its semantics after the translation field is set (#48985)
-
- 16 Jan, 2020 1 commit
-
-
Alexandre Ardhuin authored
-
- 06 Jan, 2020 1 commit
-
-
Jonah Williams authored
-
- 27 Nov, 2019 1 commit
-
-
Ian Hickson authored
* Update project.pbxproj files to say Flutter rather than Chromium Also, the templates now have an empty organization so that we don't cause people to give their apps a Flutter copyright. * Update the copyright notice checker to require a standard notice on all files * Update copyrights on Dart files. (This was a mechanical commit.) * Fix weird license headers on Dart files that deviate from our conventions; relicense Shrine. Some were already marked "The Flutter Authors", not clear why. Their dates have been normalized. Some were missing the blank line after the license. Some were randomly different in trivial ways for no apparent reason (e.g. missing the trailing period). * Clean up the copyrights in non-Dart files. (Manual edits.) Also, make sure templates don't have copyrights. * Fix some more ORGANIZATIONNAMEs
-
- 23 Oct, 2019 1 commit
-
-
Jonah Williams authored
-
- 22 Oct, 2019 2 commits
-
-
Jonah Williams authored
This reverts commit 3597bae6.
-
Ian Hickson authored
-
- 18 Oct, 2019 1 commit
-
-
Jonah Williams authored
-
- 14 Oct, 2019 1 commit
-
-
Ryan Macnak authored
Fixes various Flutter framework test failures when bytecode is enabled.
-
- 11 Oct, 2019 1 commit
-
-
Ian Hickson authored
...because otherwise, processes that think they're manipulating your filesystem will be doing crazy things the test is ignoring, leading to (at best) failures and (at worst) flakes or disk corruption.
-
- 04 Oct, 2019 1 commit
-
-
Ryan Macnak authored
Bytecode generation will otherwise omit assert code, causing --enable-asserts to have no effect in the VM.
-
- 27 Sep, 2019 1 commit
-
-
Alexandre Ardhuin authored
-
- 27 Jul, 2019 1 commit
-
-
Jonah Williams authored
-
- 13 Jul, 2019 1 commit
-
-
Ian Hickson authored
Move tools tests into a general.shard directory in preparation to changing how we shard tools tests (#36108)
-
- 21 Mar, 2019 1 commit
-
-
Jonah Williams authored
-
- 20 Mar, 2019 1 commit
-
-
Ben Konyi authored
* Manual engine roll for 2019-03-19 * Applying patch for Dart SDK changes (see PR #29004)
-
- 01 Mar, 2019 1 commit
-
-
Alexandre Ardhuin authored
* add trailing commas on list/map/parameters * add trailing commas on Invocation with nb of arg>1 * add commas for widget containing widgets * add trailing commas if instantiation contains trailing comma * revert bad change
-
- 15 Feb, 2019 1 commit
-
-
Jonah Williams authored
-
- 30 Jan, 2019 1 commit
-
-
Jonah Williams authored
-
- 01 Oct, 2018 2 commits
-
-
Jonah Williams authored
This reverts commit b07d986f.
-
Chris Bracken authored
Eliminates the --snapshot and --depfile parameters from the flutter bundle command. The snapshot parameter is unused in Dart 2 -- code is built to kernel .dill files and for profile/release builds, then AOT compiled. While depfiles are still used in Dart 2 (e.g. by the kernel compiler), there are enough assumptions in the code that they lie in the default location (e.g. in the Gradle build) and no reasons to support user-cusomisation that it makes sense to eliminate the --depfile option as well, and always use the default location. This commit also renames 'depFilePath' to 'depfilePath' for consistency across the codebase.
-
- 12 Sep, 2018 1 commit
-
-
Alexandre Ardhuin authored
* enable lint unnecessary_new * fix tests * fix tests * fix tests
-
- 07 Sep, 2018 2 commits
-
-
Chris Bracken authored
This tickled a bug in KernelCompiler.compile() where the fingerprinter doesn't include the outputFilePath in its list of dependencies. As such, if the output .dill file is missing or corrupted, the fingerprint still matches and re-compile is skipped, even though it shouldn't be. I'll fix that in a followup, then look at how this triggered that issue. My hypothesis is that that it's due to the aot kernel compile and bundle kernel compile have separate output directories for the .dill files (build/ vs build/aot) but the same output directory for the associated depfiles (due to this patch). This reverts commit 43a106e9.
-
Chris Bracken authored
The --snapshot argument was only necessary in Dart 1. The --depfile argument was only used in Dart 2 mode to pass to the kernel compiler, but was inconsistent with the 'build aot' command, where the depfile was always set to build/kernel_compile.d. This patch updates 'build bundle' to emit the depfile to a location consistent with the 'build aot' command; since it's not intended to be user-configurable and flutter.gradle hardcodes the location to build/kernel_compile.d either way, this patch also eliminates the ability to configure the filename altogether.
-
- 04 Sep, 2018 1 commit
-
-
Chris Bracken authored
Dart 1 is no longer supported in Flutter.
-
- 31 Aug, 2018 1 commit
-
-
Chris Bracken authored
-
- 15 Aug, 2018 1 commit
-
-
Ian Hickson authored
* Upgrade everything except matcher. * Roll matcher (and test) * Adjust tests that depend on flutter:test directly to depend on a shim * Require use of package:test shim and remove other references to package:test
-
- 20 Jul, 2018 1 commit
-
-
Sigurd Meldgaard authored
With a fix of a path being printed relative instead of absolute.
-
- 19 Jul, 2018 1 commit
-
-
Danny Tuppeny authored
* Extract some of startApp into a reusable method * Get basic attach --machine working * Attach --machine tweaks Move validation to validate method and create daemon early so we get the startup event before trying to get a connection. * Bump daemon version so we know whether it's valid to flutter attach * Tweak output text * Swap package imports for relative * Review tweaks (naming, formatting, typedefs) * Separate arguments from process spawning This will make calling attach easier * Add a basic test for flutter attach --machine * Fix crash if port unforward modifies the list of forwarded ports * Add a no-op port forwarder for flutter-tester * Switch to using BasicProject instead of our own inline code * Fix expectation in test now we have a portForwarder * Remove stale TODO (this is done) * Tweak formatting * Change some Completers to void to fix Dart 2 issues
-
- 16 Jul, 2018 2 commits
-
-
Sigurd Meldgaard authored
This reverts commit 57d78cc7.
-
Sigurd Meldgaard authored
-
- 20 Jun, 2018 1 commit
-
-
Ian Hickson authored
The new matcher package deprecates isInstanceOf which seems eggregious.
-