- 10 Jan, 2019 1 commit
-
-
Dan Field authored
* Revert "Check for duplicative Flutter.framework emeddings when building for Xcode 10 (#23188)"
-
- 09 Jan, 2019 2 commits
-
-
Dan Field authored
* Check for bad configuration in Xcode10
-
Jonah Williams authored
-
- 08 Jan, 2019 2 commits
-
-
Jonah Williams authored
* Revert "Replace netls and netaddr with dev_finder (#26090)" This reverts commit eee154af.
-
Jonah Williams authored
-
- 11 Dec, 2018 1 commit
-
-
Jonah Williams authored
-
- 01 Dec, 2018 1 commit
-
-
Jonah Williams authored
-
- 21 Nov, 2018 1 commit
-
-
Dan Field authored
-
- 19 Nov, 2018 1 commit
-
-
Alexandre Ardhuin authored
* update lint list * enable sort_pub_dependencies * enable avoid_returning_null_for_void * enable flutter_style_todos
-
- 15 Nov, 2018 1 commit
-
-
Dan Field authored
* fix test in xcode_backend.sh * -n * fix devicelab test * uncomment good code, check for \"\"
-
- 10 Nov, 2018 1 commit
-
-
Dan Field authored
* Make host app test actually test host app * mark updated test as flaky
-
- 06 Nov, 2018 1 commit
-
-
Jonah Williams authored
-
- 31 Oct, 2018 1 commit
-
-
Dan Field authored
* Use Xcode build configurations to drive Flutter build mode * Proper check wrt local_engine, print error if profile mode misisng * Remove unused code, update tests, fix template problem, update warning * fix up warning * add explanatory dev comment * fix whitespace * missing words, change lambda arrow to function body * error indentation * Test early exits for xcode_backend.sh * only on macOS, use right test * Update error messages * case insensitive compare for build config * Update gallery podfile * update projects to add profile configuration * make compatible with flavors * add missing plist files * add FLUTTER_FRAMEWORK_DIR back, set swift version for profile, tell Podfile about profile
-
- 30 Oct, 2018 2 commits
-
-
Dan Field authored
* Use Xcode build configurations to drive Flutter build mode * Proper check wrt local_engine, print error if profile mode misisng * Remove unused code, update tests, fix template problem, update warning * fix up warning * add explanatory dev comment * fix whitespace * missing words, change lambda arrow to function body * error indentation * Test early exits for xcode_backend.sh * only on macOS, use right test * Update error messages * case insensitive compare for build config * Update gallery podfile * update projects to add profile configuration * make compatible with flavors * add missing plist files
- 25 Oct, 2018 2 commits
-
-
Dan Field authored
* Use Xcode build configurations to drive Flutter build mode
- 17 Oct, 2018 1 commit
-
-
Alexandre Ardhuin authored
-
- 16 Oct, 2018 1 commit
-
-
Dan Field authored
* Make it easier to Add2App for iOS * Use local engine if xcconfig says so * newline
-
- 09 Oct, 2018 1 commit
-
-
Stanislav Baranov authored
-
- 05 Oct, 2018 1 commit
-
-
Alexandre Ardhuin authored
-
- 03 Oct, 2018 2 commits
-
-
Michael Goderbauer authored
-
Michael Goderbauer authored
-
- 01 Oct, 2018 1 commit
-
-
Alexandre Ardhuin authored
-
- 26 Sep, 2018 2 commits
-
-
Jonah Williams authored
-
Mikkel Nygaard Ravn authored
* Fix xcode_backend.sh script to support add2app * Fix ios deployment target. Too old for new Xcode. * Fix ios host app * Register plugins with Flutter view
-
- 25 Sep, 2018 2 commits
-
-
Michael Goderbauer authored
A dSYM file is created for the stripped `App.framework` and placed at `build/aot/App.dSYM`. Reduces `App.framework` for Flutter Gallery by 6MB uncompressed, minus 23%. Reduces `App.framework` for Hello World by 1.6MB uncompressed, minus 22%. Fixes #4287. Fixes #18693. Helps with #21813. See also #12012. This change depends on https://dart-review.googlesource.com/c/sdk/+/76306.
-
Mikkel Nygaard Ravn authored
* Prototype * Fix paths to Flutter library resources * Invoke pod install as necessary for materialized modules * Add devicelab test for module use on iOS * Remove debug output * Rebase, reame materialize editable * Add devicelab test editable iOS host app * Removed add2app test section
-
- 12 Sep, 2018 1 commit
-
-
Alexandre Ardhuin authored
* enable lint unnecessary_new * fix tests * fix tests * fix tests
-
- 09 Sep, 2018 1 commit
-
-
Alexander Aprelev authored
* Update fuchsia-tester so it takes map of kernel test files * Set mainDart correctly. Cleanup nits.
-
- 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.
-
- 05 Sep, 2018 1 commit
-
-
Chris Bracken 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.
-
- 21 Aug, 2018 2 commits
-
-
Ian Hickson authored
Fixes the pattern for some TODOs to match our style guide. (Also, a couple of minor code order fixes.)
-
leoylung authored
Require componentName to ensure assets are placed under /pkg/data/<component-name>
-
- 17 Aug, 2018 1 commit
-
-
Ian Hickson authored
All temporary directory start with `flutter_` and have their random component separated from the name by a period, as in `flutter_test_bundle.YFYQMY`. I've tried to find some of the places where we didn't cleanly delete temporary directories, too. This greatly reduces, though it does not entirely eliminate, the directories we leave behind when running tests, especially `flutter_tools` tests. While I was at it I standardized on `tempDir` as the variable name for temporary directories, since it was the most common, removing occurrences of `temp` and `tmp`, among others. Also I factored out some common code that used to catch exceptions that happen on Windows, and made more places use that pattern.
-
- 15 Aug, 2018 2 commits
-
-
Ian Hickson authored
-
Todd Volkert authored
-
- 14 Aug, 2018 1 commit
-
-
leoylung authored
-