Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: flutter/flutter
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 538e7424d018
Choose a base ref
...
head repository: flutter/flutter
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: fa402c8057a1
Choose a head ref
  • 19 commits
  • 36 files changed
  • 9 contributors

Commits on Sep 25, 2024

  1. mark linux packages autoroller bringup: true (#155705)

    Unblock the tree while I investigate
    #155704
    christopherfujino authored Sep 25, 2024
    Configuration menu
    Copy the full SHA
    eb42a01 View commit details
    Browse the repository at this point in the history
  2. [Android] Update SystemUiMode and `setSystemChromeEnabledSystemUIMo…

    …de ` docs to note targeting Android 15+ change (#153466)
    
    Updates `SystemUiMode` and `setSystemChromeEnabledSystemUIMode` documentation to reflect that edge-to-edge mode is used by default if the Flutter app targets Android 15.
    
    Part of #150367 and framework counterpart to flutter/engine#54560.
    camsim99 authored Sep 25, 2024
    Configuration menu
    Copy the full SHA
    146ea07 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    936cfb8 View commit details
    Browse the repository at this point in the history
  4. [flutter_tools] Cleanup of native asset related code (removes around …

    …50% of the native asset related code) (#155430)
    
    tl;dr Removes 50% (>1650 locs) of native asset related code in
    `packages/flutter_tools`
    
    Before this PR the invocation of dart build/link/dry-run was implemented
    per OS. This lead to very large code duplication of almost identical,
    but slightly different code. It also led to similarly duplicated test
    code.
    
    Almost the entire dart build/link/dry-run implementation is identical
    across OSes. There's small variations:
    
    - configuration of the build (e.g. android/macos/ios version, ios sdk, ...)
    - determining target locations & copying the final shared libraries
    
    This PR unifies the implementation by reducing the code to basically two
    main functions:
    
      * `runFlutterSpecificDartBuild` which is responsible for
        - obtain flutter configuration
        - perform dart build (& link)
        - determine target location & install binaries
    
    * `runFlutterSpecificDartDryRunOnPlatforms` which is responsible for a
    similar (but not same):
        - obtain flutter configuration
        - perform dart dry run
        - determine target location
    
    these two functions will call out to helpers for the OS specific
    functionality:
    
    * `_assetTargetLocationsForOS` for determining the location of the code
    assets
    
    * `_copyNativeCodeAssetsForOS` for copying the code assets (and possibly
    overriting the install name, etc)
    
    => Since we get rid of the code duplication across OSes and have only a
    single code path for the build/link/dry-run, we can also remove the
    duplicated tests that were pretty much identical across OSes.
    
    We also harden the building code by adding asserts, e.g.
    
      * the dry fun functionality should never be used by `flutter test`
    
      * the `build/native_assets/<os>/native_assets.yaml` should only be used
         by `flutter test` and the dry-run of `flutter run`
    
    => We change the tests to also comply with these invariants (so the
    tests are not testing things that cannot happen in reality)
    
    We also rename `{,Flutter}NativeAssetsBuildRunner` to disambiguate it
    from the `package:native_asset_builder`'s `NativeAssetsBuildRunner`.
    mkustermann authored Sep 25, 2024
    Configuration menu
    Copy the full SHA
    621e7ef View commit details
    Browse the repository at this point in the history
  5. Reverts "[flutter_tools] Cleanup of native asset related code (remove…

    …s around 50% of the native asset related code) (#155430)" (#155713)
    
    Reverts: #155430
    Initiated by: eyebrowsoffire
    Reason for reverting: Postsubmit failures closing the tree. See the following examples:
    
    https://ci.chromium.org/ui/p/flutter/builders/prod/Mac_ios%20native_assets_ios/5738/overview
    https://ci.chromium.org/ui/p/flutter/builders/prod/Mac_arm64_mokey%20native_assets_android/583/overview
    https://ci.chromium.org/ui/p/flutter/builders/prod/Linux_pixel_7pro%20native_assets_android/4075/overview
    https://ci.chromium.org/u
    Original PR Author: mkustermann
    
    Reviewed By: {bkonyi, dcharkes}
    
    This change reverts the following previous change:
    tl;dr Removes 50% (>1650 locs) of native asset related code in `packages/flutter_tools`
    
    Before this PR the invocation of dart build/link/dry-run was implemented per OS. This lead to very large code duplication of almost identical, but sligthly different code. It also led to similarly duplicated test code.
    
    Almost the entire dart build/link/dry-run implementation is identical across OSes. There's small variations:
    
      - configuration of the build (e.g. android/macos/ios version, ios sdk, ...)
      - determining target locations & copying the final shared libraries
    
    This PR unifies the implementation by reducing the code to basically two main functions:
    
      * `runFlutterSpecificDartBuild` which is responsible for
        - obtain flutter configuration
        - perform dart build (& link)
        - determine target location & install binaries
    
      * `runFlutterSpecificDartDryRunOnPlatforms` which is responsible for a similar (but not same):
        - obtain flutter configuration
        - perform dart dry run
        - determine target location
    
    these two functions will call out to helpers for the OS specific functionality:
    
      * `_assetTargetLocationsForOS` for determining the location of the code assets
    
      * `_copyNativeCodeAssetsForOS` for copying the code assets (and possibly overriting the install name, etc)
    
    => Since we get rid of the code duplication across OSes and have only a single code path for the build/link/dry-run, we can also remove the duplicated tests that were pretty much identical across OSes.
    
    We also harden the building code by adding asserts, e.g.
    
      * the dry fun functionality should never be used by `flutter test`
    
      * the `build/native_assets/<os>/native_assets.yaml` should only be used by `flutter test` and the dry-run of `flutter run`
    
    => We change the tests to also comply with these invariants (so the tests are not testing things that cannot happen in reality)
    
    We also rename `{,Flutter}NativeAssetsBuildRunner` to disambiguate it from the `package:native_asset_builder`'s `NativeAssetsBuildRunner`.
    
    We also reorganize the main code to make it readable from top-down and make members private where they can be.
    auto-submit[bot] authored Sep 25, 2024
    Configuration menu
    Copy the full SHA
    4dfa688 View commit details
    Browse the repository at this point in the history
  6. Bump actions/checkout from 4.1.7 to 4.2.0 (#155711)

    Bumps [actions/checkout](https://github.com/actions/checkout) from 4.1.7 to 4.2.0.
    <details>
    <summary>Release notes</summary>
    <p><em>Sourced from <a href="https://github.com/actions/checkout/releases">actions/checkout's releases</a>.</em></p>
    <blockquote>
    <h2>v4.2.0</h2>
    <h2>What's Changed</h2>
    <ul>
    <li>Add Ref and Commit outputs by <a href="https://github.com/lucacome"><code>@�lucacome</code></a> in <a href="https://redirect.github.com/actions/checkout/pull/1180">actions/checkout#1180</a></li>
    <li>Dependabot updates in <a href="https://redirect.github.com/actions/checkout/pull/1777">actions/checkout#1777</a> &amp; <a href="https://redirect.github.com/actions/checkout/pull/1872">actions/checkout#1872</a></li>
    </ul>
    <h2>New Contributors</h2>
    <ul>
    <li><a href="https://github.com/yasonk"><code>@�yasonk</code></a> made their first contribution in <a href="https://redirect.github.com/actions/checkout/pull/1869">actions/checkout#1869</a></li>
    <li><a href="https://github.com/lucacome"><code>@�lucacome</code></a> made their first contribution in <a href="https://redirect.github.com/actions/checkout/pull/1180">actions/checkout#1180</a></li>
    </ul>
    <p><strong>Full Changelog</strong>: <a href="https://github.com/actions/checkout/compare/v4.1.7...v4.2.0">https://github.com/actions/checkout/compare/v4.1.7...v4.2.0</a></p>
    </blockquote>
    </details>
    <details>
    <summary>Changelog</summary>
    <p><em>Sourced from <a href="https://github.com/actions/checkout/blob/main/CHANGELOG.md">actions/checkout's changelog</a>.</em></p>
    <blockquote>
    <h1>Changelog</h1>
    <h2>v4.2.0</h2>
    <ul>
    <li>Add Ref and Commit outputs by <a href="https://github.com/lucacome"><code>@�lucacome</code></a> in <a href="https://redirect.github.com/actions/checkout/pull/1180">actions/checkout#1180</a></li>
    <li>Dependency updates by <a href="https://github.com/dependabot"><code>@�dependabot</code></a>- <a href="https://redirect.github.com/actions/checkout/pull/1777">actions/checkout#1777</a>, <a href="https://redirect.github.com/actions/checkout/pull/1872">actions/checkout#1872</a></li>
    </ul>
    <h2>v4.1.7</h2>
    <ul>
    <li>Bump the minor-npm-dependencies group across 1 directory with 4 updates by <a href="https://github.com/dependabot"><code>@�dependabot</code></a> in <a href="https://redirect.github.com/actions/checkout/pull/1739">actions/checkout#1739</a></li>
    <li>Bump actions/checkout from 3 to 4 by <a href="https://github.com/dependabot"><code>@�dependabot</code></a> in <a href="https://redirect.github.com/actions/checkout/pull/1697">actions/checkout#1697</a></li>
    <li>Check out other refs/* by commit by <a href="https://github.com/orhantoy"><code>@�orhantoy</code></a> in <a href="https://redirect.github.com/actions/checkout/pull/1774">actions/checkout#1774</a></li>
    <li>Pin actions/checkout's own workflows to a known, good, stable version. by <a href="https://github.com/jww3"><code>@�jww3</code></a> in <a href="https://redirect.github.com/actions/checkout/pull/1776">actions/checkout#1776</a></li>
    </ul>
    <h2>v4.1.6</h2>
    <ul>
    <li>Check platform to set archive extension appropriately by <a href="https://github.com/cory-miller"><code>@�cory-miller</code></a> in <a href="https://redirect.github.com/actions/checkout/pull/1732">actions/checkout#1732</a></li>
    </ul>
    <h2>v4.1.5</h2>
    <ul>
    <li>Update NPM dependencies by <a href="https://github.com/cory-miller"><code>@�cory-miller</code></a> in <a href="https://redirect.github.com/actions/checkout/pull/1703">actions/checkout#1703</a></li>
    <li>Bump github/codeql-action from 2 to 3 by <a href="https://github.com/dependabot"><code>@�dependabot</code></a> in <a href="https://redirect.github.com/actions/checkout/pull/1694">actions/checkout#1694</a></li>
    <li>Bump actions/setup-node from 1 to 4 by <a href="https://github.com/dependabot"><code>@�dependabot</code></a> in <a href="https://redirect.github.com/actions/checkout/pull/1696">actions/checkout#1696</a></li>
    <li>Bump actions/upload-artifact from 2 to 4 by <a href="https://github.com/dependabot"><code>@�dependabot</code></a> in <a href="https://redirect.github.com/actions/checkout/pull/1695">actions/checkout#1695</a></li>
    <li>README: Suggest <code>user.email</code> to be <code>41898282+github-actions[bot]@users.noreply.github.com</code> by <a href="https://github.com/cory-miller"><code>@�cory-miller</code></a> in <a href="https://redirect.github.com/actions/checkout/pull/1707">actions/checkout#1707</a></li>
    </ul>
    <h2>v4.1.4</h2>
    <ul>
    <li>Disable <code>extensions.worktreeConfig</code> when disabling <code>sparse-checkout</code> by <a href="https://github.com/jww3"><code>@�jww3</code></a> in <a href="https://redirect.github.com/actions/checkout/pull/1692">actions/checkout#1692</a></li>
    <li>Add dependabot config by <a href="https://github.com/cory-miller"><code>@�cory-miller</code></a> in <a href="https://redirect.github.com/actions/checkout/pull/1688">actions/checkout#1688</a></li>
    <li>Bump the minor-actions-dependencies group with 2 updates by <a href="https://github.com/dependabot"><code>@�dependabot</code></a> in <a href="https://redirect.github.com/actions/checkout/pull/1693">actions/checkout#1693</a></li>
    <li>Bump word-wrap from 1.2.3 to 1.2.5 by <a href="https://github.com/dependabot"><code>@�dependabot</code></a> in <a href="https://redirect.github.com/actions/checkout/pull/1643">actions/checkout#1643</a></li>
    </ul>
    <h2>v4.1.3</h2>
    <ul>
    <li>Check git version before attempting to disable <code>sparse-checkout</code> by <a href="https://github.com/jww3"><code>@�jww3</code></a> in <a href="https://redirect.github.com/actions/checkout/pull/1656">actions/checkout#1656</a></li>
    <li>Add SSH user parameter by <a href="https://github.com/cory-miller"><code>@�cory-miller</code></a> in <a href="https://redirect.github.com/actions/checkout/pull/1685">actions/checkout#1685</a></li>
    <li>Update <code>actions/checkout</code> version in <code>update-main-version.yml</code> by <a href="https://github.com/jww3"><code>@�jww3</code></a> in <a href="https://redirect.github.com/actions/checkout/pull/1650">actions/checkout#1650</a></li>
    </ul>
    <h2>v4.1.2</h2>
    <ul>
    <li>Fix: Disable sparse checkout whenever <code>sparse-checkout</code> option is not present <a href="https://github.com/dscho"><code>@�dscho</code></a> in <a href="https://redirect.github.com/actions/checkout/pull/1598">actions/checkout#1598</a></li>
    </ul>
    <h2>v4.1.1</h2>
    <ul>
    <li>Correct link to GitHub Docs by <a href="https://github.com/peterbe"><code>@�peterbe</code></a> in <a href="https://redirect.github.com/actions/checkout/pull/1511">actions/checkout#1511</a></li>
    <li>Link to release page from what's new section by <a href="https://github.com/cory-miller"><code>@�cory-miller</code></a> in <a href="https://redirect.github.com/actions/checkout/pull/1514">actions/checkout#1514</a></li>
    </ul>
    <h2>v4.1.0</h2>
    <ul>
    <li><a href="https://redirect.github.com/actions/checkout/pull/1396">Add support for partial checkout filters</a></li>
    </ul>
    <h2>v4.0.0</h2>
    <ul>
    <li><a href="https://redirect.github.com/actions/checkout/pull/1067">Support fetching without the --progress option</a></li>
    <li><a href="https://redirect.github.com/actions/checkout/pull/1436">Update to node20</a></li>
    </ul>
    <h2>v3.6.0</h2>
    <ul>
    <li><a href="https://redirect.github.com/actions/checkout/pull/1377">Fix: Mark test scripts with Bash'isms to be run via Bash</a></li>
    </ul>
    </blockquote>
    <p>... (truncated)</p>
    </details>
    <details>
    <summary>Commits</summary>
    <ul>
    <li><a href="https://github.com/actions/checkout/commit/d632683dd7b4114ad314bca15554477dd762a938"><code>d632683</code></a> Prepare 4.2.0 release (<a href="https://redirect.github.com/actions/checkout/issues/1878">#1878</a>)</li>
    <li><a href="https://github.com/actions/checkout/commit/6d193bf28034eafb982f37bd894289fe649468fc"><code>6d193bf</code></a> Bump braces from 3.0.2 to 3.0.3 (<a href="https://redirect.github.com/actions/checkout/issues/1777">#1777</a>)</li>
    <li><a href="https://github.com/actions/checkout/commit/db0cee9a514becbbd4a101a5fbbbf47865ee316c"><code>db0cee9</code></a> Bump the minor-npm-dependencies group across 1 directory with 4 updates (<a href="https://redirect.github.com/actions/checkout/issues/1872">#1872</a>)</li>
    <li><a href="https://github.com/actions/checkout/commit/b6849436894e144dbce29d7d7fda2ae3bf9d8365"><code>b684943</code></a> Add Ref and Commit outputs (<a href="https://redirect.github.com/actions/checkout/issues/1180">#1180</a>)</li>
    <li><a href="https://github.com/actions/checkout/commit/2d7d9f7ff5b310f983d059b68785b3c74d8b8edd"><code>2d7d9f7</code></a> Provide explanation for where user email came from (<a href="https://redirect.github.com/actions/checkout/issues/1869">#1869</a>)</li>
    <li><a href="https://github.com/actions/checkout/commit/9a9194f87191a7e9055e3e9b95b8cfb13023bb08"><code>9a9194f</code></a> Bump docker/build-push-action from 5.3.0 to 6.5.0 (<a href="https://redirect.github.com/actions/checkout/issues/1832">#1832</a>)</li>
    <li><a href="https://github.com/actions/checkout/commit/dd960bd3c3f080561a1810e32349ac211ecec7d4"><code>dd960bd</code></a> Bump docker/login-action in the minor-actions-dependencies group (<a href="https://redirect.github.com/actions/checkout/issues/1831">#1831</a>)</li>
    <li>See full diff in <a href="https://github.com/actions/checkout/compare/692973e3d937129bcbf40652eb9f2f61becf3332...d632683dd7b4114ad314bca15554477dd762a938">compare view</a></li>
    </ul>
    </details>
    <br />
    
    [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=actions/checkout&package-manager=github_actions&previous-version=4.1.7&new-version=4.2.0)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)
    
    Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`.
    
    ---
    
    <details>
    <summary>Dependabot commands and options</summary>
    <br />
    
    You can trigger Dependabot actions by commenting on this PR:
    - `@dependabot rebase` will rebase this PR
    - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it
    - `@dependabot merge` will merge this PR after your CI passes on it
    - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it
    - `@dependabot cancel merge` will cancel a previously requested merge and block automerging
    - `@dependabot reopen` will reopen this PR if it is closed
    - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
    - `@dependabot show <dependency name> ignore conditions` will show all of the ignore conditions of the specified dependency
    - `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
    - `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
    - `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
    
    </details>
    dependabot[bot] authored Sep 25, 2024
    Configuration menu
    Copy the full SHA
    6458fd9 View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    8925e1f View commit details
    Browse the repository at this point in the history

Commits on Sep 26, 2024

  1. Roll Flutter Engine from d6d5fdba6ae1 to d4850c1ae648 (18 revisions) (#…

    …155733)
    
    flutter/engine@d6d5fdb...d4850c1
    
    2024-09-26 98614782+auto-submit[bot]@users.noreply.github.com Reverts "Roll Dart SDK from c2728b947e46 to 016368ee313d (1 revision) (#55444)" (flutter/engine#55454)
    2024-09-26 98614782+auto-submit[bot]@users.noreply.github.com Reverts "Add `SurfaceProducer#onSurfaceAvailable`, deprecate `onSurfaceCreated`. (#55418)" (flutter/engine#55450)
    2024-09-25 [email protected] Reland "[canvaskit] Further improve overlay optimization by splitting pictures" (flutter/engine#55402)
    2024-09-25 [email protected] Move lint suppression from `baseline.xml` to `@SuppressLint`. (flutter/engine#55447)
    2024-09-25 [email protected] [engine] set platform thread name to ui. (flutter/engine#55362)
    2024-09-25 [email protected] Roll Dart SDK from c2728b947e46 to 016368ee313d (1 revision) (flutter/engine#55444)
    2024-09-25 [email protected] [Impeller] actually fix external texture for GLES. (flutter/engine#55414)
    2024-09-25 [email protected] Roll Skia from e623a37de332 to 9f3b32b7b772 (2 revisions) (flutter/engine#55443)
    2024-09-25 [email protected] Remove usages of WindowManager's getDefaultDisplay (flutter/engine#55002)
    2024-09-25 [email protected] Fixes blend + color filter (flutter/engine#55411)
    2024-09-25 [email protected] Add a boolean that exposes rotation/crop metadata capability. (flutter/engine#55434)
    2024-09-25 [email protected] Roll Skia from 9af762100cf1 to e623a37de332 (1 revision) (flutter/engine#55439)
    2024-09-25 [email protected] [scenario_app] delete get bitmap activity. (flutter/engine#55436)
    2024-09-25 [email protected] [Flutter GPU] Use vm.Vector4 for clear color instead of ui.Color. (flutter/engine#55416)
    2024-09-25 [email protected] Roll Dart SDK from dd73afd20be5 to c2728b947e46 (1 revision) (flutter/engine#55437)
    2024-09-25 [email protected] adds more tasks to the engine workspace (flutter/engine#55435)
    2024-09-25 [email protected] Roll Skia from 79e652aad7a9 to 9af762100cf1 (2 revisions) (flutter/engine#55433)
    2024-09-25 [email protected] Add `SurfaceProducer#onSurfaceAvailable`, deprecate `onSurfaceCreated`. (flutter/engine#55418)
    
    If this roll has caused a breakage, revert this CL and stop the roller
    using the controls here:
    https://autoroll.skia.org/r/flutter-engine-flutter-autoroll
    Please CC [email protected],[email protected] on the revert to ensure that a human
    is aware of the problem.
    
    To file a bug in Flutter: https://github.com/flutter/flutter/issues/new/choose
    
    To report a problem with the AutoRoller itself, please file a bug:
    https://issues.skia.org/issues/new?component=1389291&template=1850622
    
    Documentation for the AutoRoller is here:
    https://skia.googlesource.com/buildbot/+doc/main/autoroll/README.md
    engine-flutter-autoroll authored Sep 26, 2024
    Configuration menu
    Copy the full SHA
    a75e98d View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    1dc2108 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    cc0ca11 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    010b739 View commit details
    Browse the repository at this point in the history
  5. Roll Flutter Engine from fc6c85292b57 to 896208ee5828 (2 revisions) (#…

    …155743)
    
    flutter/engine@fc6c852...896208e
    
    2024-09-26 [email protected] Roll Skia from e5ce4ecbcf7b to d804bdf62b5e (1 revision) (flutter/engine#55455)
    2024-09-26 98614782+auto-submit[bot]@users.noreply.github.com Reverts "Reland "[canvaskit] Further improve overlay optimization by splitting pictures" (#55402)" (flutter/engine#55456)
    
    If this roll has caused a breakage, revert this CL and stop the roller
    using the controls here:
    https://autoroll.skia.org/r/flutter-engine-flutter-autoroll
    Please CC [email protected],[email protected] on the revert to ensure that a human
    is aware of the problem.
    
    To file a bug in Flutter: https://github.com/flutter/flutter/issues/new/choose
    
    To report a problem with the AutoRoller itself, please file a bug:
    https://issues.skia.org/issues/new?component=1389291&template=1850622
    
    Documentation for the AutoRoller is here:
    https://skia.googlesource.com/buildbot/+doc/main/autoroll/README.md
    engine-flutter-autoroll authored Sep 26, 2024
    Configuration menu
    Copy the full SHA
    5b1eb26 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    a5c7b06 View commit details
    Browse the repository at this point in the history
  7. Reland "[flutter_tools] Cleanup of native asset related code (removes…

    … around 50% of the native asset related code) (#155430)" (#155745)
    
    Changes to original CL: The code that issues an error on unsupported
    operating system in the dry-run case was missing a case for iOS and
    Android
    
    Original CL description
    
      tl;dr Removes 50% (>1650 locs) of native asset related code in
      `packages/flutter_tools`
    
    Before this PR the invocation of dart build/link/dry-run was implemented
      per OS. This lead to very large code duplication of almost identical,
      but slightly different code. It also led to similarly duplicated test
      code.
    
      Almost the entire dart build/link/dry-run implementation is identical
      across OSes. There's small variations:
    
    - configuration of the build (e.g. android/macos/ios version, ios sdk,
    ...)
      - determining target locations & copying the final shared libraries
    
    This PR unifies the implementation by reducing the code to basically two
      main functions:
    
        * `runFlutterSpecificDartBuild` which is responsible for
          - obtain flutter configuration
          - perform dart build (& link)
          - determine target location & install binaries
    
      * `runFlutterSpecificDartDryRunOnPlatforms` which is responsible for a
      similar (but not same):
          - obtain flutter configuration
          - perform dart dry run
          - determine target location
    
      these two functions will call out to helpers for the OS specific
      functionality:
    
    * `_assetTargetLocationsForOS` for determining the location of the code
      assets
    
    * `_copyNativeCodeAssetsForOS` for copying the code assets (and possibly
      overriting the install name, etc)
    
    => Since we get rid of the code duplication across OSes and have only a
      single code path for the build/link/dry-run, we can also remove the
      duplicated tests that were pretty much identical across OSes.
    
      We also harden the building code by adding asserts, e.g.
    
        * the dry fun functionality should never be used by `flutter test`
    
    * the `build/native_assets/<os>/native_assets.yaml` should only be used
           by `flutter test` and the dry-run of `flutter run`
    
      => We change the tests to also comply with these invariants (so the
      tests are not testing things that cannot happen in reality)
    
      We also rename `{,Flutter}NativeAssetsBuildRunner` to disambiguate it
      from the `package:native_asset_builder`'s `NativeAssetsBuildRunner`.
    mkustermann authored Sep 26, 2024
    Configuration menu
    Copy the full SHA
    abcba1f View commit details
    Browse the repository at this point in the history
  8. Roll Flutter Engine from 3a520a2a4399 to 08f935236e45 (1 revision) (#…

    …155748)
    
    flutter/engine@3a520a2...08f9352
    
    2024-09-26 [email protected] Roll Fuchsia Linux SDK from T0BbBnkQd0GfMnGQc... to hMFizUI--VpyjP3ht... (flutter/engine#55458)
    
    Also rolling transitive DEPS:
      fuchsia/sdk/core/linux-amd64 from T0BbBnkQd0Gf to hMFizUI--Vpy
    
    If this roll has caused a breakage, revert this CL and stop the roller
    using the controls here:
    https://autoroll.skia.org/r/flutter-engine-flutter-autoroll
    Please CC [email protected],[email protected] on the revert to ensure that a human
    is aware of the problem.
    
    To file a bug in Flutter: https://github.com/flutter/flutter/issues/new/choose
    
    To report a problem with the AutoRoller itself, please file a bug:
    https://issues.skia.org/issues/new?component=1389291&template=1850622
    
    Documentation for the AutoRoller is here:
    https://skia.googlesource.com/buildbot/+doc/main/autoroll/README.md
    engine-flutter-autoroll authored Sep 26, 2024
    Configuration menu
    Copy the full SHA
    a9853d6 View commit details
    Browse the repository at this point in the history
  9. Configuration menu
    Copy the full SHA
    f7b3639 View commit details
    Browse the repository at this point in the history
  10. Configuration menu
    Copy the full SHA
    49873fd View commit details
    Browse the repository at this point in the history
  11. Roll Packages from 7da2374 to f38b780 (2 revisions) (#155760)

    flutter/packages@7da2374...f38b780
    
    2024-09-25 [email protected] [package:flutter_lints] update the dep on `package:lints` to 5.0.0 and the sdk dependency to 3.5.0 (flutter/packages#7704)
    2024-09-25 [email protected] Roll Flutter from 4ca51a1 to 538e742 (40 revisions) (flutter/packages#7705)
    
    If this roll has caused a breakage, revert this CL and stop the roller
    using the controls here:
    https://autoroll.skia.org/r/flutter-packages-flutter-autoroll
    Please CC [email protected] on the revert to ensure that a human
    is aware of the problem.
    
    To file a bug in Flutter: https://github.com/flutter/flutter/issues/new/choose
    
    To report a problem with the AutoRoller itself, please file a bug:
    https://issues.skia.org/issues/new?component=1389291&template=1850622
    
    Documentation for the AutoRoller is here:
    https://skia.googlesource.com/buildbot/+doc/main/autoroll/README.md
    engine-flutter-autoroll authored Sep 26, 2024
    Configuration menu
    Copy the full SHA
    7ec6083 View commit details
    Browse the repository at this point in the history
  12. Configuration menu
    Copy the full SHA
    fa402c8 View commit details
    Browse the repository at this point in the history
Loading