- 20 Jun, 2018 1 commit
-
-
Mikkel Nygaard Ravn authored
-
- 15 Jun, 2018 1 commit
-
-
Stanislav Baranov authored
Add flutter tool support for creating app-specific VM snapshots.
-
- 13 Jun, 2018 1 commit
-
-
Chris Bracken authored
fuchsia_tester.dart still assumes Dart 1. Previously, it ran tests directly from source, flutter_platform.dart automatically runs a kernel compile when operating in Dart 2 mode, but this assumes a functional Dart SDK is available in the artifacts directly, and fuchsia_tester.dart mocks out the artifacts directory with an empty temp dir. Remaining work is: 1. Get the frontend server building as a dependency on Fuchsia. 2. Patch fuchsia_tester.dart to use a valid Dart SDK and frontend server. This also reverts migration to Dart 2 typedef syntax. This reverts commit 6c56bb24. (#18362) This reverts commit 3daebd05. (#18316)
-
- 08 Jun, 2018 3 commits
-
-
Chris Bracken authored
* It's time to #deleteDart1 (#18293) Eliminates support for Dart 1 in flutter_tools, and drops our Dart 1 benchmarks. All commands now run in Dart 1 mode only. Eliminates --preview-dart-2 / --no-preview-dart-2 support. * Fix indentation, remove no longer necessary .toList() * Only push udpated kernel if >0 invalidated srcs
-
Chris Bracken authored
Several benchmarks started failing during kernel compile: 1. Timeouts: * commands_test * hot_mode_dev_cycle__benchmark * run_machine_concurrent_hot_reload * service_extensions_test 2. Kernel compiler crash: * hot_mode_dev_cycle_linux__benchmark * routing_test 3. Unexpected termination: * hot_mode_dev_cycle_win__benchmark This reverts commit ed63e708.
-
Chris Bracken authored
Eliminates support for Dart 1 in flutter_tools, and drops our Dart 1 benchmarks. All commands now run in Dart 1 mode only. Eliminates --preview-dart-2 / --no-preview-dart-2 support.
-
- 06 Jun, 2018 1 commit
-
-
Stanislav Baranov authored
-
- 04 Jun, 2018 1 commit
-
-
Martin Kustermann authored
The change in 8b8d368d has only renamed the flag in a subset of the places.
-
- 01 Jun, 2018 1 commit
-
-
Mikkel Nygaard Ravn authored
-
- 31 May, 2018 2 commits
-
-
Mikkel Nygaard Ravn authored
This reverts commit 59bb2dba.
-
Mikkel Nygaard Ravn authored
-
- 28 May, 2018 4 commits
-
-
Mikkel Nygaard Ravn authored
This reverts commit 0f557e72.
-
Mikkel Nygaard Ravn authored
-
Mikkel Nygaard Ravn authored
This reverts commit dac1baf4.
-
Mikkel Nygaard Ravn authored
-
- 17 May, 2018 1 commit
-
-
Mikkel Nygaard Ravn authored
-
- 14 May, 2018 1 commit
-
-
Alexander Markov authored
-
- 02 May, 2018 1 commit
-
-
Chris Bracken authored
This updates the Android build to declare the kernel compile depfile as an output and its contents as inputs when running with --preview-dart-2 (the default mode). The 'flutter build aot' command behaves differently depending on whether it's running in Dart 1 or Dart 2 mode: * Dart 1: the entrypoint Dart file (typically main.dart) is passed directly to gen_snapshot, which then emits snapshot.d, whose contents list the transitive closure of Dart dependencies (input files) for the snapshot. snapshot.d is a declared output, its contents (plus gen_snapshot itself) constitute the set of input files to the Gradle build action. * Dart 2: then entrypoint Dart file (typically main.dart) is first compiled with the Dart kernel frontend. This emits kernel_compile.d, whose contents list the transitive closure of Dart dependencies (input files) for the kernel 'dill' output file. This 'dill' file is then passed to gen_snapshot, which emits snapshot.d, whose contents are empty. As of this change, both snapshot.d and kernel_compile.d are declared outputs, and their contents (plus gen_snapshot and the frontend compiler themselves) constitute the set of input files to the Gradle build action. This fixes a bug wherein profile/release AOT outputs were not invalidated due to snapshot.d being empty, and kernel_compile.d being ignored. This was introduced during recent refactoring of the AOT build code, wherein the kernel compile and gen_snapshot actions were changed to emit independent depfiles (previously one stomped -- or failed to -- on the other's output).
-
- 24 Apr, 2018 1 commit
-
-
Alexander Aprelev authored
-
- 12 Apr, 2018 1 commit
-
-
Sarah Zakarias authored
-
- 06 Apr, 2018 1 commit
-
-
Mikkel Nygaard Ravn authored
-
- 17 Mar, 2018 3 commits
-
-
Alexander Aprelev authored
* Revert "Revert "Reland pass filesystem options (#15622)" (#15651)" This reverts commit 0f3eada0. * Fix for windows failing test * !isEmpty -> isNotEmpty
-
Alexander Aprelev authored
This reverts commit bbcf55a5 as it breaks hot reload on Windows.
-
Alexander Aprelev authored
* Revert "Revert "Pass filesystem-root, filesystem-scheme options through `flutter run, build` and gradle. (#15592)" (#15621)" This reverts commit c663e336. * Check whether filesystem-root is emtpy. * Restore broken merge * Fix windows test * Adjust regex in test. Invalidate files by file path.
-
- 16 Mar, 2018 3 commits
-
-
Vyacheslav Egorov authored
-
Alexander Aprelev authored
Revert "Pass filesystem-root, filesystem-scheme options through `flutter run, build` and gradle. (#15592)" (#15621) This reverts commit 0f659fb1 as it breaks bin/tasks/gradle_plugin_test.dart.
-
Alexander Aprelev authored
* Pass filesystem-root, filesystem-scheme options through flutter run/build/gradle.
-
- 06 Mar, 2018 1 commit
-
-
Alexander Markov authored
Pass extra front-end and gen_snapshot options to GenerateDependencies gradle task, as it also runs 'flutter build aot' (#14980)
-
- 02 Mar, 2018 1 commit
-
-
Alexander Aprelev authored
* Use depfile in --preview-dart-2 mode. * Generate and use frontend_server.d to guard against reusing outdated dill files when frontend_server changes.
-
- 28 Feb, 2018 1 commit
-
-
Mikkel Nygaard Ravn authored
-
- 12 Feb, 2018 1 commit
-
-
Jacob Richman authored
-
- 08 Feb, 2018 1 commit
-
-
asiva authored
-
- 01 Feb, 2018 1 commit
-
-
Jason Simmons authored
-
- 27 Jan, 2018 1 commit
-
-
Martin Kustermann authored
This was overlooked in 5e18c076
-
- 15 Jan, 2018 1 commit
-
-
Alexander Aprelev authored
* Clean up output directory before copying over new files * Use standard clean task command
-
- 08 Jan, 2018 1 commit
-
-
Jason Simmons authored
Fixes https://github.com/flutter/flutter/issues/13972
-
- 04 Jan, 2018 1 commit
-
-
Siva authored
* Plumb a --strong option through to the front end server and the engine so that we can run flutter apps in preview-dart-2 and strong mode * - Address analyzer lint issues *- correctly set up strong mode option in the case of AOT builds
-
- 18 Dec, 2017 1 commit
-
-
Sarah Zakarias authored
-
- 14 Dec, 2017 2 commits
-
-
Sarah Zakarias authored
* Revert "Revert engine (#13547)" This reverts commit ee65db11. * Keep flaky mark
-
Mikkel Nygaard Ravn authored
This reverts commit 05d6b08f.
-