- 05 May, 2020 1 commit
-
-
Jenn Magder authored
-
- 01 May, 2020 1 commit
-
-
Jonah Williams authored
Ensure iOS and android builds can be correctly cached. Use the performance-measurement-file to verify that all targets were skipped on the second invocation. This is only run on the flutter_gallery build.
-
- 30 Apr, 2020 1 commit
-
-
Jonah Williams authored
Support bundling SkSL shaders into an android APK or appbundle via the --bundle-sksl-path command line options. If provided, these are validated for platform engine revision and then placed in flutter_assets/io.flutter.shaders.json
-
- 25 Mar, 2020 1 commit
-
-
Jonah Williams authored
This will allow experimenting with the remove to string transformer before we're ready to turn it on by default. This doesn't work for web yet since we use dart2js instead of the frontend_server for producing kernel
-
- 06 Mar, 2020 1 commit
-
-
Jonah Williams authored
-
- 05 Mar, 2020 2 commits
-
-
Jonah Williams authored
Revert "[flutter_tools] Allow providing dart-defines to Android, iOS, macOS builds (#51714)" (#52041) This reverts commit ee60eeea.
-
Jonah Williams authored
-
- 27 Feb, 2020 1 commit
-
-
Jonah Williams authored
-
- 11 Feb, 2020 1 commit
-
-
Alexandre Ardhuin authored
-
- 05 Feb, 2020 1 commit
-
-
Dan Field authored
-
- 10 Jan, 2020 1 commit
-
-
Emmanuel Garcia authored
-
- 17 Dec, 2019 1 commit
-
-
Emmanuel Garcia 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
-
- 26 Nov, 2019 1 commit
-
-
Christopher Fujino authored
-
- 19 Nov, 2019 1 commit
-
-
Alexandre Ardhuin authored
* implicit-casts:false on flutter_tools/lib * address review comments * use castStringKeyedMap * introduce {bool,string,strings}Arg * fix ci
-
- 08 Nov, 2019 1 commit
-
-
Jonah Williams authored
Removes multiple re-entrant calls of bundle and aot and replaces them with a single call to assemble. This restores full caching and will allow follow-up performance improvements when building multiple ABIs
-
- 10 Oct, 2019 1 commit
-
-
Jonah Williams authored
-
- 14 Sep, 2019 1 commit
-
-
Emmanuel Garcia authored
-
- 12 Sep, 2019 1 commit
-
-
Emmanuel Garcia authored
-
- 11 Sep, 2019 1 commit
-
-
Emmanuel Garcia authored
-
- 30 Aug, 2019 1 commit
-
-
Emmanuel Garcia authored
-
- 10 Jun, 2019 1 commit
-
-
Emmanuel Garcia authored
* Gradle generates ELF shared libraries instead of AOT snapshots. * `flutter build apk/appbundle` supports multiple `--target-platform` and defaults to `android-arm` and `android-arm64`. * `flutter build apk` now has a flag called `--split-per-abi`.
-
- 09 Jun, 2019 2 commits
-
-
Jonah Williams authored
Revert "Generate ELF shared libraries and allow multi-abi libs in APKs and App bundles (#33696)" (#34121)
-
Emmanuel Garcia authored
* Gradle generates ELF shared libraries instead of AOT snapshots. * `flutter build apk/appbundle` supports multiple `--target-platform` and defaults to `android-arm` and `android-arm64`. * `flutter build apk` now has a flag called `--split-per-abi`.
-
- 20 May, 2019 1 commit
-
-
Emmanuel Garcia authored
-
- 29 Apr, 2019 1 commit
-
-
Jonah Williams authored
-
- 13 Feb, 2019 2 commits
-
-
Jonah Williams authored
This reverts commit 76061c4f.
-
Jonah Williams authored
-
- 08 Feb, 2019 2 commits
-
-
Jonah Williams authored
This reverts commit 98971f3c.
-
Jonah Williams authored
-
- 25 Jan, 2019 2 commits
-
-
Gary Qian authored
- 19 Jan, 2019 1 commit
-
-
Ian Hickson authored
These are essentially self-inflicted race conditions. Instead of timeouts we're going to try a more verbose logging mechanism that points out when things are taking a long time.
-
- 21 Dec, 2018 1 commit
-
-
Pranay Airan authored
* adding support for android app bundle. * removing the debug statement. * fixing formatting and code review changes. * Revert "fixing formatting and code review changes." This reverts commit 2041d459f335242555a0b75e445343134c245494. * Fixing code formatting issues. * updating review comments fixing comments and spacing. * changing and to & to rerun the CI and tests. * updating the comment to re-run the test updating the comment to re-run the test * fixing the formatting. * updating comments to re-trigger build updating comments to re-trigger build
-
- 20 Dec, 2018 1 commit
-
-
Stanislav Baranov authored
-
- 11 Oct, 2018 1 commit
-
-
Greg Spencer authored
This attempts to re-land #22656. There are two changes from the original: I turned off wrapping completely when not sending output to a terminal. Previously I had defaulted to wrapping at and arbitrary 100 chars in that case, just to keep long messages from being too long, but that turns out the be a bad idea because there are tests that are relying on the specific form of the output. It's also pretty arbitrary, and mostly people sending output to a non-terminal will want unwrapped text. I found a better way to terminate ANSI color/bold sequences, so that they can be embedded within each other without needed quite as complex a dance with removing redundant sequences. As part of these changes, I removed the Logger.supportsColor setter so that the one source of truth for color support is in AnsiTerminal.supportsColor. * Turn on line wrapping again in usage and status messages, adds ANSI color to doctor and analysis messages. (#22656) This turns on text wrapping for usage messages and status messages. When on a terminal, wraps to the width of the terminal. When writing to a non-terminal, wrap lines at a default column width (currently defined to be 100 chars). If --no-wrap is specified, then no wrapping occurs. If --wrap-column is specified, wraps to that column (if --wrap is on). Adds ANSI color to the doctor and analysis output on terminals. This is in this PR with the wrapping, since wrapping needs to know how to count visible characters in the presence of ANSI sequences. (This is just one more step towards re-implementing all of Curses for Flutter. :-)) Will not print ANSI sequences when sent to a non-terminal, or of --no-color is specified. Fixes ANSI color and bold sequences so that they can be combined (bold, colored text), and a small bug in indentation calculation for wrapping. Since wrapping is now turned on, also removed many redundant '\n's in the code.
-
- 06 Oct, 2018 2 commits
-
-
Greg Spencer authored
Revert "Turn on line wrapping in usage and status messages, adds ANSI color to doctor and analysis messages. (#22656)" (#22759) This reverts commit e4386321 because it breaks 160 benchmarks, and several devicelab tests, due to changing the format of the output.
-
Greg Spencer authored
Turn on line wrapping in usage and status messages, adds ANSI color to doctor and analysis messages. (#22656) This turns on text wrapping for usage messages and status messages. When on a terminal, wraps to the width of the terminal. When writing to a non-terminal, wrap lines at a default column width (currently defined to be 100 chars). If --no-wrap is specified, then no wrapping occurs. If --wrap-column is specified, wraps to that column (if --wrap is on). Adds ANSI color to the doctor and analysis output on terminals. This is in this PR with the wrapping, since wrapping needs to know how to count visible characters in the presence of ANSI sequences. (This is just one more step towards re-implementing all of Curses for Flutter. :-)) Will not print ANSI sequences when sent to a non-terminal, or of --no-color is specified. Fixes ANSI color and bold sequences so that they can be combined (bold, colored text), and a small bug in indentation calculation for wrapping. Since wrapping is now turned on, also removed many redundant '\n's in the code.
-
- 05 Oct, 2018 1 commit
-
-
Alexandre Ardhuin authored
-
- 04 Sep, 2018 1 commit
-
-
Chris Bracken authored
This patch eliminates the --preview-dart-2/--no-preview-dart-2 flag, hardcoding all uses to true. It also defaults all previewDart2 method parameters to true, where they hadn't yet been. A series of subsequent patches will eliminate all previewDart2 parameters and the associated code from within the codebase.
-