- 31 Jan, 2024 1 commit
-
-
Dan Field authored
Refactors `ShaderTarget` to make it opaque as to whether it's using Impeller or SkSL and instead has it focus on the target platform it's generating for. ImpellerC includes SkSL right now whether you ask for it or not. The tester target also might need SkSL or Vulkan depending on whether `--enable-impeller` is passed.
-
- 25 Jan, 2024 1 commit
-
-
Andrew Kolos authored
Part of work on [#101077](https://github.com/flutter/flutter/pull/141194). This is done as a separate PR to avoid a massive diff. ## Context 1. The `FakeCommand` class accepts a list of patterns that's used to match a command given to its `FakeProcessManager`. Since `FakeCommand` can match a list of patterns, not just specifically strings, it can be used to match commands where the exact value of some arguments can't (easily) known ahead of time. For example, a part of the tool may invoke a command with an argument that is the path of a temporarily file that has a randomly-generated basename. 2. The `FakeCommand` class provides on `onRun` parameter, which is a callback that is run when the `FakeProcessManager` runs a command that matches the `FakeCommand` in question. ## Issue In the event that a `FakeCommand` is constructed using patterns, the test code can't know the exact values used for arguments in the command. This PR proposes changing the type of `onRun` from `VoidCallback?` to `void Function(List<String>)?`. When run, the value `List<String>` parameter will be the full command that the `FakeCommand` matched. Example: ```dart FakeCommand( command: <Pattern>[ artifacts.getArtifactPath(Artifact.engineDartBinary), 'run', 'vector_graphics_compiler', RegExp(r'--input=/.*\.temp'), RegExp(r'--output=/.*\.temp'), ], onRun: (List<String> command) { final outputPath = (() { // code to parse `--output` from `command` })(); testFileSystem.file(outputPath).createSync(recursive: true); }, ) ```
-
- 03 Jan, 2024 2 commits
-
-
Jenn Magder authored
Bitcode has been removed https://github.com/flutter/flutter/issues/107887, clean up the leftover commands.
-
Jenn Magder authored
Reland https://github.com/flutter/flutter/pull/140478 with `ios_content_validation_test` test fix. ``` [ios_content_validation_test] Process terminated with exit code 0. Task result: { "success": true, "data": null, "detailFiles": [], "benchmarkScoreKeys": [], "reason": "success" } ``` __________ 1. Change templates to `IPHONEOS_DEPLOYMENT_TARGET`, `MinimumOSVersion`, and Podfile `platform :ios` to 12.0. 2. Add migrator for Podfile part to migrate `platform :ios, '11.0'` -> `platform :ios, '12.0'` 3. Compile with `-miphoneos-version-min=12.0` 4. Run the migrator on all example apps and integration tests. See also https://github.com/flutter/flutter/pull/62902 and https://github.com/flutter/flutter/pull/85174 and https://github.com/flutter/flutter/pull/101963 Fixes https://github.com/flutter/flutter/issues/136060
-
- 02 Jan, 2024 2 commits
-
-
auto-submit[bot] authored
Reverts flutter/flutter#140478 Initiated by: loic-sharma This change reverts the following previous change: Original Description: 1. Change templates to `IPHONEOS_DEPLOYMENT_TARGET`, `MinimumOSVersion`, and Podfile `platform :ios` to 12.0. 2. Add migrator for Podfile part to migrate `platform :ios, '11.0'` -> `platform :ios, '12.0'` 3. Compile with `-miphoneos-version-min=12.0` 4. Run the migrator on all example apps and integration tests. See also https://github.com/flutter/flutter/pull/62902 and https://github.com/flutter/flutter/pull/85174 and https://github.com/flutter/flutter/pull/101963 Fixes https://github.com/flutter/flutter/issues/136060
-
Jenn Magder authored
1. Change templates to `IPHONEOS_DEPLOYMENT_TARGET`, `MinimumOSVersion`, and Podfile `platform :ios` to 12.0. 2. Add migrator for Podfile part to migrate `platform :ios, '11.0'` -> `platform :ios, '12.0'` 3. Compile with `-miphoneos-version-min=12.0` 4. Run the migrator on all example apps and integration tests. See also https://github.com/flutter/flutter/pull/62902 and https://github.com/flutter/flutter/pull/85174 and https://github.com/flutter/flutter/pull/101963 Fixes https://github.com/flutter/flutter/issues/136060
-
- 22 Nov, 2023 1 commit
-
-
Elias Yishak authored
Add `commandHasTerminal` parameter + apple usage event + `sendException` events for `package:unified_analytics` (#138806) Relates to tracker issue: - https://github.com/flutter/flutter/issues/128251 This PR includes 3 major updates: - Adding the `commandHasTerminal` parameter for `Event.flutterCommandResult` - In `packages/flutter_tools/lib/src/runner/flutter_command.dart` - Adding the new event for `sendException` from package:usage to be `Event.exception` (this event can be used by all dash tools) - In `packages/flutter_tools/lib/runner.dart` - Migrating the generic `UsageEvent` which was only used for Apple related workflows for iOS and macOS. I did an initial analysis in this [sheet](https://docs.google.com/spreadsheets/d/11KJLkHXFpECMX7tw-trNkYSr5MHDG15XNGv6TgLjfQs/edit?resourcekey=0-j4qdvsOEEg3wQW79YlY1-g#gid=0) to identify all the call sites - Found in several files, highlighted in the sheet above
-
- 14 Apr, 2023 1 commit
-
-
Jenn Magder authored
Remove Finder extended attributes in build target before code signing iOS frameworks
-
- 28 Mar, 2023 1 commit
-
-
Jenn Magder authored
Add flags to make App.framework work in app extension
-
- 27 Jan, 2023 1 commit
-
-
Jonah Williams authored
-
- 12 Dec, 2022 1 commit
-
-
Jonah Williams authored
-
- 29 Nov, 2022 1 commit
-
-
Jonah Williams authored
* [flutter_tools] use absolute path for shader lib * update tests
-
- 15 Nov, 2022 1 commit
-
-
Brandon DeRosier authored
-
- 10 Nov, 2022 1 commit
-
-
Jenn Magder authored
-
- 02 Nov, 2022 1 commit
-
-
Jonah Williams authored
-
- 04 Oct, 2022 1 commit
-
-
Jenn Magder authored
-
- 05 Sep, 2022 1 commit
-
-
Ivan Dlugos authored
-
- 30 Jul, 2022 1 commit
-
-
Jenn Magder authored
-
- 29 Jul, 2022 1 commit
-
-
Jenn Magder authored
-
- 18 Jun, 2022 1 commit
-
-
Jonah Williams authored
-
- 27 Apr, 2022 1 commit
-
-
Alexandre Ardhuin authored
-
- 15 Apr, 2022 1 commit
-
-
Jenn Magder authored
-
- 12 Nov, 2021 1 commit
-
-
Jenn Magder authored
-
- 24 Jun, 2021 1 commit
-
-
Jenn Magder authored
-
- 23 Jun, 2021 1 commit
-
-
Ahmed Ashour authored
-
- 16 Jun, 2021 1 commit
-
-
Jenn Magder authored
-
- 12 May, 2021 1 commit
-
-
Alexandre Ardhuin authored
-
- 08 May, 2021 1 commit
-
-
Jenn Magder authored
-
- 06 May, 2021 1 commit
-
-
Jenn Magder authored
-
- 01 May, 2021 1 commit
-
-
Jonah Williams authored
-
- 28 Apr, 2021 1 commit
-
-
Jenn Magder authored
-
- 15 Apr, 2021 1 commit
-
-
Jenn Magder authored
-
- 09 Mar, 2021 1 commit
-
-
Jenn Magder authored
-
- 05 Mar, 2021 1 commit
-
-
Jenn Magder authored
-
- 01 Mar, 2021 1 commit
-
-
Jenn Magder authored
-
- 26 Feb, 2021 1 commit
-
-
Jenn Magder authored
-
- 25 Feb, 2021 1 commit
-
-
Jenn Magder authored
-
- 18 Feb, 2021 1 commit
-
-
Sam Rawlins authored
-
- 27 Jan, 2021 1 commit
-
-
Jonah Williams authored
* opt out the flutter tool * oops EOF * fix import * Update tool_backend.dart * Update daemon_client.dart * fix more
-
- 23 Dec, 2020 1 commit
-
-
Jenn Magder authored
-