- 21 Feb, 2018 1 commit
-
-
jcollins-g authored
* Fix packages tests when run off bots * Tweak dependencies to make bots happy * Review comment
-
- 16 Feb, 2018 1 commit
-
-
Mikkel Nygaard Ravn authored
-
- 15 Feb, 2018 2 commits
-
-
Mikkel Nygaard Ravn authored
This reverts commit b3e4976c.
-
Mikkel Nygaard Ravn authored
-
- 01 Feb, 2018 1 commit
-
-
jcollins-g authored
* Populate AnsiTerminal in context for daemon launches * Strip out AnsiTerminal additions to context since they are no longer needed
-
- 07 Dec, 2017 1 commit
-
-
Devon Carew authored
* route device issue diagnostics to flutter doctor * review comments * review comments
-
- 29 Nov, 2017 1 commit
-
-
Todd Volkert authored
Add support for IOS_SIMULATOR_HOME environment variable in IOSSimulator.logFilePath flutter_tools can be run on environments where the user's HOME directory is not the root of the iOS simulators' configs. This change adds support for such environments by allowing the caller to set the simulator root directory via an environment variable.
-
- 21 Nov, 2017 1 commit
-
-
Martin Kustermann authored
* Add support for NDK discovery and add --prefer-shared-library option We would like to be able to use native tools (e.g. simpleperf, gdb) with precompiled flutter apps. The native tools work much better with *.so files instead of the custom formats the Dart VM uses by default. The reason for using blobs / instruction snapshots is that we do not want to force flutter users to install the Android NDK. This CL adds a `--prefer-shared-library` flag to e.g. `flutter build apk` which will use the NDK compiler (if available) to turn the precompiled app assembly file to an `*.so` file. If the NDK compiler is not available it will default to the default behavior. * Rebase, add test for NDK detection, augment flutter.gradle with @Input for flag * Use InMemoryFileSystem for test * Remove unused import * Address some analyzer warnings
-
- 29 Sep, 2017 1 commit
-
-
Ian Hickson authored
-
- 06 Sep, 2017 1 commit
-
-
Mikkel Nygaard Ravn authored
-
- 10 Jul, 2017 1 commit
-
-
Seth Ladd authored
* report run target and if it is an emulator * don't print debug * rename parameter, remove unused variable * fix test * fix comment * tweak from review, and fix analyzer error * send custom parameters for the event, not the session * fix mock * use the +1 for usage
-
- 25 May, 2017 1 commit
-
-
Hans Muller authored
-
- 27 Apr, 2017 2 commits
-
-
xster authored
FlutterCommand.runCommand subclasses can optionally return a FlutterCommandResult which is used to append additional analytics. Fix flutter run timing report and add a bunch of dimensional data
-
Zachary Anderson authored
-
- 26 Apr, 2017 1 commit
-
-
Todd Volkert authored
`adb` can sometimes hang, which will in turn hang the Dart isolate if we're using `Process.runSync()`. This changes many of the `Device` methods to return `Future<T>` in order to allow them to use the async process methods. A future change will add timeouts to the associated calls so that we can properly alert the user to the hung `adb` process. This is work towards #7102, #9567
-
- 20 Apr, 2017 1 commit
-
-
Alexandre Ardhuin authored
* comprehensive list of lints * add comments to commented out lint * fix unnecessary_this lints * exclude prefer_final_fields
-
- 04 Apr, 2017 1 commit
-
-
Yegor authored
-
- 02 Apr, 2017 1 commit
-
-
Ian Hickson authored
This should make the message in Travis logs look better.
-
- 28 Mar, 2017 1 commit
-
-
Yegor authored
* enable crash reporting in flutter_tools * fix analytics text; use relative paths * fix test
-
- 14 Mar, 2017 1 commit
-
-
Todd Volkert authored
1. Add `PortScanner` abstraction so that we don't do actual port scanning in tests. 2. Don't change the real `cwd` of the isolate during tests, as it affects all tests, not just the current running test. Fixes #8761
-
- 13 Mar, 2017 1 commit
-
-
John McCutchan authored
Fixes #8618
-
- 10 Mar, 2017 2 commits
-
-
Todd Volkert authored
-
Todd Volkert authored
`all.dart` is no longer needed. Furthermore, it causes tests to be skipped, or to silently fail to run anything. Fixes #7941
-
- 09 Mar, 2017 1 commit
-
-
Todd Volkert authored
-
- 07 Mar, 2017 1 commit
-
-
Todd Volkert authored
This adds the test harness for record/replay tests.
-
- 06 Mar, 2017 1 commit
-
-
Todd Volkert authored
1. Add matchers for the `ProcessExit` exception class 2. Add ability to control the setup of the `AppContext` we use in `testUsingContext()` 3. Clean up the code that figures out the location of `Cache.flutterRoot` such that it works with `pub run test`. It previously only worked when the tests were invoked with standalone `dart` `#3` above will also help unblock #7941
-
- 04 Mar, 2017 1 commit
-
-
Chris Bracken authored
-
- 28 Feb, 2017 1 commit
-
-
Yegor authored
-
- 22 Feb, 2017 1 commit
-
-
Michael Goderbauer authored
-
- 21 Feb, 2017 2 commits
-
-
Todd Volkert authored
-
Michael Goderbauer authored
Works around https://github.com/dart-lang/test/issues/545
-
- 20 Feb, 2017 2 commits
-
-
Alexandre Ardhuin authored
-
Jakob Andersen authored
* Teach flutter tools to find gradle Flutter tools will now use Gradle from Android Studio, which is now found automatically. flutter doctor will verify that Android Studio has been installed, and that the included Gradle is at least version 2.14.1. It is still possible to manually configure the path to Android Studio (flutter config --android-studio-dir=XXX) or Gradle (flutter config --gradle-dir=XXX), but this should only be necessary if they're installed somewhere non-standard. Only tested on Linux and macOS for now. Fixes #8131
-
- 17 Feb, 2017 1 commit
-
-
Michael Goderbauer authored
Artifacts are now located in a central place. This will enable us to downlaod artifacts when we need them (instead of downloading them all upfront). This also makes replacing sky_snapshot with gen_snapshot easier.
-
- 14 Feb, 2017 1 commit
-
-
Michael Goderbauer authored
-
- 11 Feb, 2017 1 commit
-
-
Michael Goderbauer authored
-
- 06 Feb, 2017 1 commit
-
-
Michael Goderbauer authored
-
- 02 Feb, 2017 1 commit
-
-
Chris Bracken authored
Ref: https://developer.apple.com/xcode/
-
- 28 Jan, 2017 1 commit
-
-
Ian Hickson authored
-
- 26 Jan, 2017 1 commit
-
-
Todd Volkert authored
-