Devon Carew
3ba17136b7
add a restart command to the daemon protocol ( #4385 )
...
* refactor the --resident run option into a separate file
* update daemon to run --resident apps
* re-plumbing daemon start
* send app logs
* update tests
* review changes
* fix test runner
* remove PackageMap.createGlobalInstance; rely on the ctor
* review comments
2016-06-07 12:13:35 -07:00
Devon Carew
6c96e1a320
use the --resident option on flutter run by default ( #4386 )
2016-06-06 10:29:27 -07:00
Phil Quitslund
6d2d495369
Merge pull request #4348 from pq/fix_4091
...
Fix flutter analyze defaults when files are specified (#4091 ).
2016-06-06 10:00:55 -07:00
Chinmay Garde
8756a094a9
Add a FLUTTER_MODE variable to the generated Xcconfig and fix snapshot generation on all targets. ( #4362 )
...
Get rid of the DART_EXPERIMENTAL_INTERPRETER_FLAG.
2016-06-03 13:55:57 -07:00
pq
ce82bc1b15
Check for user specified args.
2016-06-03 12:52:43 -07:00
pq
305af8b873
Fix flutter analyze defaults when files are specified ( #4091 ).
...
Disables current package and current directory analysis when files are specified.
Fixes: https://github.com/flutter/flutter/issues/4091 .
2016-06-03 09:24:54 -07:00
Jason Simmons
00c7734c8b
Tools daemon handlers for discovering apps and forwarding device ports ( #4324 )
2016-06-02 14:00:27 -07:00
Adam Barth
612a097d1f
Add --target support to flutter build ios ( #4318 )
...
Fixes #4298
2016-06-02 08:57:13 -07:00
Devon Carew
9e9dfc3d2d
fix a race condition with isolate notification ( #4286 )
...
* fix a race condition with isolate notification
* return a future
2016-06-01 15:17:04 -07:00
Jason Simmons
49c4064132
Add Dart IO entry points to the snapshotter command line ( #4257 )
2016-05-31 10:51:28 -07:00
Devon Carew
7c47837c27
show build progress; print app sizes ( #4263 )
...
* show build progress; print app sizes
* add todo
* review comments
* remove unused import
2016-05-29 15:07:41 -07:00
Devon Carew
49affc4098
make the drive output prettier ( #4260 )
2016-05-27 22:36:07 -07:00
Devon Carew
111392d7c9
run pub get (w/ symlinks) for flutter drive ( #4259 )
...
* run pub get (w/ symlinks) for flutter drive
* review comments
2016-05-27 21:42:46 -07:00
Chinmay Garde
989a530350
Don't avoid linking with libSystem to work around issue in dyld. ( #4241 )
2016-05-27 11:24:10 -07:00
Todd Volkert
51d4ab3324
Fix install for iOS simulator, and add ability to uninstall ( #4223 )
2016-05-27 11:05:10 -07:00
Yegor
f544abd016
modernize flutter drive
w.r.t. debug/profile/release options ( #4217 )
...
* modernize `flutter drive` w.r.t. debug/profil/release options
* make error message prettier
2016-05-27 10:02:36 -07:00
Devon Carew
ec7517766c
Flutter run restart ( #4105 )
...
* working on making a faster flutter run restart
* clean up todos; fire events on isolate changes
* use the Flutter.FrameworkInitialization event
* review comments
2016-05-26 15:26:14 -07:00
Devon Carew
d6aed1e7c9
add a --quiet option to flutter_tools ( #4213 )
2016-05-26 13:41:29 -07:00
Devon Carew
9cfa96608c
dissallow -release mode on emulators ( #4204 )
...
* dissallow -release mode on emulators
* have the help text print the default mode
2016-05-26 09:14:51 -07:00
Jason Simmons
5aa9a7fc53
Forward the observatory (but not the diagnostic server) when in profile mode ( #4183 )
2016-05-25 15:21:11 -07:00
Todd Volkert
0da58802cf
Fix aot compiler and linker args
2016-05-25 14:32:57 -07:00
Adam Barth
e8e9d4633c
Workaround https://github.com/dart-lang/sdk/issues/26362 ( #4171 )
...
When building AOT, we now run `pub get` instead of printing an error telling
the user to run `pub get`. We can remove this code once the bug reference above
is fixed (should be a couple days).
2016-05-24 16:29:13 -07:00
Adam Barth
2d726fc0c5
Build app.so instead of app.a on iOS ( #4168 )
...
The app.a wasn't getting pulled into the main executable because we weren't
referencing any of its symbols. Instead, create a dylib that can be packaged
with the application and loaded at runtime.
2016-05-24 15:49:53 -07:00
Adam Barth
e8a47b6d49
Add --interpreter to flutter build aot ( #4159 )
...
This patch teaches flutter build aot to build `app.a` for use with the Dart
interpreter.
2016-05-24 12:06:53 -07:00
Adam Barth
cb7a690815
Let flutter build aot select a target platform ( #4154 )
...
Currently only android-arm and ios are supported target platforms.
2016-05-24 11:21:07 -07:00
Adam Barth
f33596aacb
Teach flutter to build app.a ( #4141 )
...
On iOS, we use Xcode to build a static library that contains the precompiled
code. This code is currently unused, but it will be used by the new Xcode
harness to factor out as much complexity as possible into the flutter tool.
2016-05-24 09:49:31 -07:00
Devon Carew
4764550f9f
fail flutter analyze when there are errors ( #4117 )
2016-05-23 14:39:42 -07:00
Chinmay Garde
66fee3a622
Wire up ios-profile and ios-release. Switching between debug, profile and release starts the build process from scratch. ( #4063 )
2016-05-23 12:58:42 -07:00
Devon Carew
4962656b1d
remove old command aliases ( #4103 )
2016-05-23 12:06:49 -07:00
Ian Hickson
10c861d6e9
Track number of pending dartdocs too ( #4088 )
2016-05-20 16:47:44 -07:00
Ian Hickson
94636bd206
Cleanup based on new lints ( #4052 )
2016-05-20 14:08:46 -07:00
Devon Carew
95f838b072
Update trace.dart ( #4055 )
2016-05-19 14:06:40 -07:00
Eric Seidel
880f2f785e
flutter test now works on mac as well as linux
...
@chinmaygarde
2016-05-19 13:10:15 -07:00
Devon Carew
a48b063a10
rebuild when the build type changes ( #4032 )
...
* rebuild when the build type changes
* handle local engine builds
* also check the timestamp
2016-05-19 12:49:40 -07:00
Ian Hickson
f284c1a049
Fix tests ( #3977 )
...
Also, make sure that broken tests actually break the bots.
And add a test to make sure that keeps happening.
2016-05-17 12:45:37 -07:00
Jason Simmons
c192a7e4ca
Replace the checked flag in DebuggingOptions with the build mode ( #3901 )
...
This also fixes some related problems affecting "flutter run":
* FLXes built during AndroidDevice.startApp need to match the build mode
* APKs should always be rebuilt if the build mode uses AOT compilation
2016-05-17 12:38:25 -07:00
Collin Jackson
b4313b04b0
Merge pull request #3946 from collinjackson/apk
...
Make flutter run generate identical apks to flutter build apk
2016-05-17 07:30:10 -07:00
Collin Jackson
a312db482d
remove the add-files argument to flutter run
2016-05-16 18:33:59 -07:00
Chinmay Garde
0e8f26dd6c
Use the correct host toolchain when building from a local engine checkout on Mac. ( #3956 )
2016-05-16 17:05:39 -07:00
Collin Jackson
00e22284f2
Fix #3891 by making flutter run generate identical apks to flutter build apk
2016-05-16 15:53:18 -07:00
Devon Carew
483922d15c
allow per-command analytics suppression ( #3919 )
...
* allow per-command analytics suppression
* rev the usage package dep
2016-05-15 20:06:27 -07:00
Devon Carew
cc5d1adcfc
handle an exit code from android n ( #3914 )
...
* handle an exit code from android n
* review comments
2016-05-13 16:47:30 -07:00
Yegor
15decfca6e
reenable --checked option in flutter drive ( #3916 )
2016-05-13 16:42:28 -07:00
Devon Carew
40c0d6ea12
Consolidate observatory code ( #3892 )
...
* rename service_protocol.dart to protocol_discovery.dart
* add a wrapper around the obs. protocol
* use json-rpc in run
* consolidate obs. code; implement flutter run --benchmark
* review comments
2016-05-12 18:15:23 -07:00
Jason Simmons
32846de9f8
Remove ArtifactStore and move flutterRoot into Cache ( #3883 )
2016-05-12 15:54:35 -07:00
Jason Simmons
a590ee2671
Remove BuildConfigurations ( #3879 )
...
Artifacts from local engine builds will be found based on the --local-engine flag
2016-05-12 12:22:15 -07:00
Jason Simmons
0f53f7966b
Remove Toolchain and extend ToolConfiguration to locate host tools such as sky_snapshot ( #3870 )
...
Host tools can be found in the artifact cache directory for the host platform.
If a developer wants to use a local engine build instead, then provide an
--engine-build flag that selects the specific engine build variant.
2016-05-11 15:47:26 -07:00
Devon Carew
6635f1cf9b
re-enable --checked ( #3857 )
2016-05-11 12:26:46 -07:00
Devon Carew
826936cd33
use vendored dart sdk; check the expected version of flutter ( #3831 )
...
* use vendored dart sdk; check the expected version of flutter
* search up directories looking for the flutter root
2016-05-10 16:21:30 -07:00
Devon Carew
52d0434bec
create a flutter setup command ( #3837 )
2016-05-10 15:04:29 -07:00