- 24 Jul, 2019 17 commits
-
-
Jonah Williams authored
-
Matt Carroll authored
-
Jonah Williams authored
-
Jonah Williams authored
-
sjindel-google authored
-
Jiahao authored
An optimization to the coverage collection speed was added in #30811. This commit further expands on it to parameterize the CoverageCollector with a custom predicate, allowing internal use cases to filter the RPC calls to the Dart VM based on scripts of interest to coverage collection.
-
Ian Hickson authored
-
Zachary Anderson authored
-
Shi-Hao Hong authored
Revert "[Material] Implement TooltipTheme and Tooltip.textStyle, fix Tooltip debugLabel, update Tooltip defaults (#36030)" (#36851) This reverts commit 62158a1b.
-
Shi-Hao Hong authored
[Material] Implement TooltipTheme and Tooltip.textStyle, fix Tooltip debugLabel, update Tooltip defaults (#36030) * Implement TooltipThemeData and TooltipTheme * Add tooltip text style property * Update default tooltip text style and decoration to match Material specification * Fix debugLabel incorrectly labeling "white" as "black", and vice versa by default
-
brandondiamond authored
-
Harsh Bhikadia authored
-
engine-flutter-autoroll authored
https://github.com/flutter/engine/compare/8ed5da8b655d...ef99738bafc0 git log 8ed5da8b655db6dd47718b03d1d909e098f7864a..ef99738bafc08861412655ec0a84e966c98c633a --no-merges --oneline ef99738ba Added a DartExecutor API for querying # of pending channel callbacks (flutter/engine#10021) a0ec52886 Embedding testing app (flutter/engine#10007) 2bf150659 Disable DartLifecycleTest::ShuttingDownTheVMShutsDownAllIsolates in runtime_unittests. (flutter/engine#10064) 8edd257c4 Roll fuchsia/sdk/core/linux-amd64 from M5an7VPM8DiCcNcKe6J0CkAtLk8X9oMeJUqGOrZATIsC to XqtWTBni4xpYCTr7gqU7rFTuXNY1TZ_zOqBJrZM8c_kC (flutter/engine#10061) e32bdf5c3 Roll src/third_party/skia 00c680d2bb7c..e11dfd3da4d7 (18 commits) (flutter/engine#10062) 6603dbd4c Update .cirrus.yml (flutter/engine#10056) The AutoRoll server is located here: https://autoroll.skia.org/r/flutter-engine-flutter-autoroll Documentation for the AutoRoller is here: https://skia.googlesource.com/buildbot/+/master/autoroll/README.md If the roll is causing failures, please contact the current sheriff (cbracken@google.com), and stop the roller if necessary.
-
K. P. Sroka authored
-
Jim Graham authored
Primarily these methods no longer allocate any objects other than their return values. Additionally, the math in the methods is reduced compared to the general case math based on known input conditions.
-
Devon Carew authored
* add an error count field to the Flutter.Error event * review comments; more tests * normalize comments
-
- 23 Jul, 2019 16 commits
-
-
Jonah Williams authored
-
Jonah Williams authored
-
engine-flutter-autoroll authored
https://github.com/flutter/engine/compare/7d320c45ab25...8ed5da8b655d git log 7d320c45ab2556b69f2f6453eab2f8b1156275ae..8ed5da8b655db6dd47718b03d1d909e098f7864a --no-merges --oneline 8ed5da8b6 Add working Robolectric tests (flutter/engine#9954) 4decc174e Add support for Android's visible password input type (flutter/engine#9999) The AutoRoll server is located here: https://autoroll.skia.org/r/flutter-engine-flutter-autoroll Documentation for the AutoRoller is here: https://skia.googlesource.com/buildbot/+/master/autoroll/README.md If the roll is causing failures, please contact the current sheriff (cbracken@google.com), and stop the roller if necessary.
-
engine-flutter-autoroll authored
https://github.com/flutter/engine/compare/1f3013163d48...7d320c45ab25 git log 1f3013163d48f46cc967b31aac193691ef28f7d9..7d320c45ab2556b69f2f6453eab2f8b1156275ae --no-merges --oneline 7d320c45a Add a macro for prefixing embedder.h symbols (flutter/engine#9851) The AutoRoll server is located here: https://autoroll.skia.org/r/flutter-engine-flutter-autoroll Documentation for the AutoRoller is here: https://skia.googlesource.com/buildbot/+/master/autoroll/README.md If the roll is causing failures, please contact the current sheriff (cbracken@google.com), and stop the roller if necessary.
-
Jonah Williams authored
-
Zachary Anderson authored
-
Hans Muller authored
-
Kate Lovett authored
-
Emmanuel Garcia authored
`flutter build aar` This new build command works just like `flutter build apk` or `flutter build appbundle`, but for plugin and module projects. This PR also refactors how plugins are included in app or module projects. By building the plugins as AARs, the Android Gradle plugin is able to use Jetifier to translate support libraries into AndroidX libraries for all the plugin's native code. Thus, reducing the error rate when using AndroidX in apps. This change also allows to build modules as AARs, so developers can take these artifacts and distribute them along with the native host app without the need of the Flutter tool. This is a requirement for add to app. `flutter build aar` generates POM artifacts (XML files) which contain metadata about the native dependencies used by the plugin. This allows Gradle to resolve dependencies at the app level. The result of this new build command is a single build/outputs/repo, the local repository that contains all the generated AARs and POM files. In a Flutter app project, this local repo is used by the Flutter Gradle plugin to resolve the plugin dependencies. In add to app case, the developer needs to configure the local repo and the dependency manually in `build.gradle`: repositories { maven { url "<path-to-flutter-module>build/host/outputs/repo" } } dependencies { implementation("<package-name>:flutter_<build-mode>:1.0@aar") { transitive = true } }
-
Emmanuel Garcia authored
This reverts commit 11460b83.
-
Emmanuel Garcia authored
`flutter build aar` This new build command works just like `flutter build apk` or `flutter build appbundle`, but for plugin and module projects. This PR also refactors how plugins are included in app or module projects. By building the plugins as AARs, the Android Gradle plugin is able to use Jetifier to translate support libraries into AndroidX libraries for all the plugin's native code. Thus, reducing the error rate when using AndroidX in apps. This change also allows to build modules as AARs, so developers can take these artifacts and distribute them along with the native host app without the need of the Flutter tool. This is a requirement for add to app. `flutter build aar` generates POM artifacts (XML files) which contain metadata about the native dependencies used by the plugin. This allows Gradle to resolve dependencies at the app level. The result of this new build command is a single build/outputs/repo, the local repository that contains all the generated AARs and POM files. In a Flutter app project, this local repo is used by the Flutter Gradle plugin to resolve the plugin dependencies. In add to app case, the developer needs to configure the local repo and the dependency manually in `build.gradle`: repositories { maven { url "<path-to-flutter-module>build/host/outputs/repo" } } dependencies { implementation("<package-name>:flutter_<build-mode>:1.0@aar") { transitive = true } }
-
engine-flutter-autoroll authored
https://github.com/flutter/engine/compare/d6970bf36a1e...1f3013163d48 git log d6970bf36a1e3d7409f7fe10f2092fbd5442d3fb..1f3013163d48f46cc967b31aac193691ef28f7d9 --no-merges --oneline 1f3013163 Roll src/third_party/skia 6dc14ded91ea..00c680d2bb7c (10 commits) (flutter/engine#10011) de6e82c09 CopyFiles is still used. (flutter/engine#10012) 1c5e5b36f Roll fuchsia/sdk/core/linux-amd64 from tY_fod_tTCLft3FAUUxCP_HdLIahaJJK4WCXOA7nNGQC to M5an7VPM8DiCcNcKe6J0CkAtLk8X9oMeJUqGOrZATIsC (flutter/engine#10008) 3aaeca3a5 Android Embedding Refactor PR36: Add splash screen support. (flutter/engine#9525) 268533e86 [fuchsia] Use GatherArtifacts to create the requisite dir structure (flutter/engine#10004) 196141717 Exit flutter_tester with an error code on an unhandled exception (flutter/engine#9932) be8819e2d Declare a copy of the enable_bitcode flag within the Flutter build scripts for use in Fuchsia builds (flutter/engine#10003) The AutoRoll server is located here: https://autoroll.skia.org/r/flutter-engine-flutter-autoroll Documentation for the AutoRoller is here: https://skia.googlesource.com/buildbot/+/master/autoroll/README.md If the roll is causing failures, please contact the current sheriff (aaclarke@google.com), and stop the roller if necessary.
-
Jonah Williams authored
-
Jonah Williams authored
-
engine-flutter-autoroll authored
https://github.com/flutter/engine/compare/9e9da56b8923...d6970bf36a1e git log 9e9da56b8923f2bcec6ba91ee2b1d3e4affebdca..d6970bf36a1e3d7409f7fe10f2092fbd5442d3fb --no-merges --oneline d6970bf36 Roll src/third_party/skia ebab03ffbffb..6dc14ded91ea (6 commits) (flutter/engine#10005) 6f3a2eb13 [macos] Add reply to binary messenger (flutter/engine#9953) a7ef5086b Clean up cirrus.yml file a little (flutter/engine#9958) 68d269e0a Roll src/third_party/dart a089199b93..fedd74669a (8 commits) (flutter/engine#10001) a004a6ed5 Roll fuchsia/sdk/core/linux-amd64 from FBDZ1EXEOcpLsJY4a5JRok5wPvXm5SURbJw1V7lpfKUC to tY_fod_tTCLft3FAUUxCP_HdLIahaJJK4WCXOA7nNGQC (flutter/engine#10000) The AutoRoll server is located here: https://autoroll.skia.org/r/flutter-engine-flutter-autoroll Documentation for the AutoRoller is here: https://skia.googlesource.com/buildbot/+/master/autoroll/README.md If the roll is causing failures, please contact the current sheriff (aaclarke@google.com), and stop the roller if necessary.
-
Jonah Williams authored
-
- 22 Jul, 2019 7 commits
-
-
Jonah Williams authored
-
Ian Hickson authored
-
Alexander Aprelev authored
-
Gary Qian authored
-
chunhtai authored
-
Ian Hickson authored
Extracted from https://github.com/flutter/flutter/pull/36205
-
Devon Carew authored
* use sentence case in error message titles * add a test
-