Skip to content
This repository was archived by the owner on Feb 25, 2025. It is now read-only.

Commit 40b5df4

Browse files
authored
Merge branch 'main' into impeller-unittests-m1
2 parents dae4259 + 7802657 commit 40b5df4

File tree

58 files changed

+1352
-864
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

58 files changed

+1352
-864
lines changed

.ci.yaml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -60,6 +60,7 @@ targets:
6060
- DEPS
6161
- lib/ui/**
6262
- shell/platform/android/**
63+
- testing/scenario_app/**
6364

6465
# Task to run Linux linux_android_emulator_tests on AVDs running Android 33
6566
# instead of 34 for investigating https://github.com/flutter/flutter/issues/137947.
@@ -76,6 +77,7 @@ targets:
7677
- DEPS
7778
- lib/ui/**
7879
- shell/platform/android/**
80+
- testing/scenario_app/**
7981

8082
- name: Linux builder_cache
8183
enabled_branches:
@@ -216,6 +218,9 @@ targets:
216218
enabled_branches:
217219
- main
218220
timeout: 60
221+
properties:
222+
gclient_variables: >-
223+
{"use_rbe": true}
219224
220225
- name: Linux linux_clang_tidy
221226
recipe: engine_v2/engine_v2

.github/workflows/engine-cp.yml

Lines changed: 86 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,86 @@
1+
# Copyright 2023 The Flutter Authors. All rights reserved.
2+
# Use of this source code is governed by a BSD-style license that can be
3+
# found in the LICENSE file.
4+
5+
name: Cherry-pick Labeled Engine PR to Release Branch
6+
7+
on:
8+
pull_request_target:
9+
branches: main
10+
types: [labeled]
11+
12+
permissions: write-all
13+
14+
jobs:
15+
cherrypick_to_release:
16+
name: cherrypick_to_release
17+
runs-on: ubuntu-latest
18+
if: |
19+
(github.event.label.name == format('cp{0} beta', ':') || github.event.label.name == format('cp{0} stable', ':')) &&
20+
(github.event.pull_request.merged == true)
21+
steps:
22+
- name: Get Release Channel
23+
run: |
24+
echo "CHANNEL=$(echo ${{ github.event.label.name }} | cut -d ':' -f 2 | xargs)" >> $GITHUB_ENV
25+
- name: Get Release Candidate Branch
26+
run: |
27+
RELEASE_BRANCH=$(curl https://raw.githubusercontent.com/flutter/flutter/$CHANNEL/bin/internal/release-candidate-branch.version)
28+
echo "RELEASE_BRANCH=$(echo $RELEASE_BRANCH | tr -d '\n')" >> $GITHUB_ENV
29+
- name: Get Cherry Pick PR
30+
run: |
31+
echo "COMMIT_SHA=$(echo ${{ github.event.pull_request.merge_commit_sha }})" >> $GITHUB_ENV
32+
- name: Checkout Flutter Engine Repo
33+
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11
34+
with:
35+
repository: flutteractionsbot/engine
36+
path: engine
37+
ref: main
38+
persist-credentials: false
39+
# Checkout all history commits on main branch, so that the cp commit is a known object
40+
fetch-depth: 0
41+
- name: Attempt CP
42+
id: attempt-cp
43+
working-directory: ./engine
44+
run: |
45+
git config user.name "GitHub Actions Bot"
46+
git config user.email "<>"
47+
git remote add upstream https://github.com/flutter/engine.git
48+
git fetch upstream $RELEASE_BRANCH
49+
git fetch upstream main
50+
git checkout -b cp-engine-${CHANNEL}-${COMMIT_SHA} --track upstream/$RELEASE_BRANCH
51+
git cherry-pick $COMMIT_SHA
52+
# TODO(xilaizhang): remove this step once the template is available on release branches.
53+
- name: Get CP Template
54+
run: |
55+
curl -o PULL_REQUEST_CP_TEMPLATE.md https://raw.githubusercontent.com/flutter/flutter/master/.github/PR_TEMPLATE/PULL_REQUEST_CP_TEMPLATE.md
56+
- name: Create PR on CP success
57+
if: ${{ steps.attempt-cp.conclusion == 'success' }}
58+
working-directory: ./engine
59+
id: create-pr
60+
run: |
61+
git push https://${{ env.GITHUB_TOKEN }}@github.com/flutteractionsbot/engine cp-engine-${CHANNEL}-${COMMIT_SHA}
62+
{
63+
echo 'PR_URL<<EOF'
64+
gh pr create --title "[CP-${CHANNEL}]${PR_TITLE}" --body-file ../PULL_REQUEST_CP_TEMPLATE.md --base ${RELEASE_BRANCH} --label "cp: review" --repo flutter/engine --head flutteractionsbot:cp-engine-${CHANNEL}-${COMMIT_SHA}
65+
echo EOF
66+
} >> "$GITHUB_ENV"
67+
env:
68+
GITHUB_TOKEN: ${{ secrets.FLUTTERACTIONSBOT_CP_TOKEN }}
69+
PR_TITLE: ${{ github.event.pull_request.title }}
70+
- name: Leave Comment on CP success
71+
if: ${{ steps.create-pr.conclusion == 'success' }}
72+
run: |
73+
echo $PR_URL
74+
NEW_PR_NUMBER="${PR_URL##*/}"
75+
SUCCESS_MSG=" @${{ github.actor }} please fill out the PR description above, afterwards the release team will review this request."
76+
gh pr comment $NEW_PR_NUMBER -R flutter/engine -b "${SUCCESS_MSG}"
77+
env:
78+
GITHUB_TOKEN: ${{ secrets.FLUTTERACTIONSBOT_CP_TOKEN }}
79+
- name: Leave Comment on CP failure
80+
if: ${{ failure() && steps.attempt-cp.conclusion == 'failure' }}
81+
run: |
82+
FAILURE_MSG="Failed to create CP due to merge conflicts.<br>"
83+
FAILURE_MSG+="You will need to create the PR manually. See [the cherrypick wiki](https://github.com/flutter/flutter/wiki/Flutter-Cherrypick-Process) for more info."
84+
gh pr comment ${{ github.event.pull_request.number }} -R flutter/engine -b "${FAILURE_MSG}"
85+
env:
86+
GITHUB_TOKEN: ${{ secrets.FLUTTERACTIONSBOT_CP_TOKEN }}

DEPS

Lines changed: 52 additions & 52 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ vars = {
1414
'flutter_git': 'https://flutter.googlesource.com',
1515
'skia_git': 'https://skia.googlesource.com',
1616
'llvm_git': 'https://llvm.googlesource.com',
17-
'skia_revision': 'cdf214adfb4d88561c8aea0800f6cdc556502103',
17+
'skia_revision': '1b266b36a4c87ed97a293f0e6db7e0295def7bcb',
1818

1919
# WARNING: DO NOT EDIT canvaskit_cipd_instance MANUALLY
2020
# See `lib/web_ui/README.md` for how to roll CanvasKit to a new version.
@@ -62,27 +62,27 @@ vars = {
6262
# Dart is: https://github.com/dart-lang/sdk/blob/main/DEPS
6363
# You can use //tools/dart/create_updated_flutter_deps.py to produce
6464
# updated revision list of existing dependencies.
65-
'dart_revision': '5a5d4c2622007c10ed6adcd5787eb3a69dd8ada4',
65+
'dart_revision': '452dd17120b7a16effa1374ea565a6d438c6d73a',
6666

6767
# WARNING: DO NOT EDIT MANUALLY
6868
# The lines between blank lines above and below are generated by a script. See create_updated_flutter_deps.py
6969
'dart_binaryen_rev': 'a51bd6df919a5b79574f0996a760cc20cb05697e',
7070
'dart_boringssl_gen_rev': '9c7294fd58261a79794f5afaa26598cf1442ad20',
7171
'dart_boringssl_rev': 'd24a38200fef19150eef00cad35b138936c08767',
72-
'dart_browser_launcher_rev': 'c68ec25e36187b050ac918d2b614f2d6320f0045',
73-
'dart_clock_rev': 'f975668839f45bad561d6227f88297bbbcff03fa',
74-
'dart_collection_rev': '2d57a82ad079fe2d127f5a9b188170de2f5cdedc',
75-
'dart_devtools_rev': '226af81369622cce9c0d98adbe31598208a27cc0',
72+
'dart_browser_launcher_rev': '74a0efe937a29d4d9aff50c145579c6e6479df1e',
73+
'dart_clock_rev': 'daf0fadabc5b3dc8e6e71bf3fb27ef9c3b79df5c',
74+
'dart_collection_rev': 'fc616ff8fd7b732c07b2b19e31b6601e59900ccf',
75+
'dart_devtools_rev': '23f534022870c4ab0f9c40a18191ffe1163e47f9',
7676
'dart_libprotobuf_rev': '24487dd1045c7f3d64a21f38a3f0c06cc4cf2edb',
7777
'dart_perfetto_rev': '13ce0c9e13b0940d2476cd0cff2301708a9a2e2b',
7878
'dart_protobuf_gn_rev': 'ca669f79945418f6229e4fef89b666b2a88cbb10',
7979
'dart_protobuf_rev': 'a293fb9c866b1def3d3e7fffc5f6763a2ec59cc9',
80-
'dart_pub_rev': 'a3689f03168c896dd1cb0db8a60c568b38ee16bf',
81-
'dart_tools_rev': 'f6e67f2223fd5f9c6bdb3ace908d22c73ea02bc5',
82-
'dart_watcher_rev': '66cd694ffb7ee6e09ff0cde6c9f788aa47ee1a23',
80+
'dart_pub_rev': '4ab2e3663f0a98be40427e004e789caebf3ea72e',
81+
'dart_tools_rev': '2ef7673ca4c8eb346debe6d628f0196788fc3c66',
82+
'dart_watcher_rev': '21858a41da1482922e03ee65cdf2169d01d59a67',
8383
'dart_webdev_rev': '2539d54bca7143a2dd1a1ec5d55fa38ca481639c',
84-
'dart_webkit_inspection_protocol_rev': '667c55e6f65638592768e0325b75420e39b01d2e',
85-
'dart_yaml_edit_rev': '47eb20e9083954b7b9ec1fb04e7a9f8976a8ed14',
84+
'dart_webkit_inspection_protocol_rev': '07295b9a5a1f1851666269128e95a9644d65107a',
85+
'dart_yaml_edit_rev': '2a9a11bee120d507d61d501c34585440be8c12b6',
8686
'dart_zlib_rev': '14dd4c4455602c9b71a1a89b5cafd1f4030d2e3f',
8787

8888
'ocmock_rev': 'c4ec0e3a7a9f56cfdbd0aa01f4f97bb4b75c5ef8', # v3.7.1
@@ -339,25 +339,25 @@ deps = {
339339
Var('chromium_git') + '/external/github.com/WebAssembly/binaryen.git@a51bd6df919a5b79574f0996a760cc20cb05697e',
340340

341341
'src/third_party/dart/third_party/devtools':
342-
{'dep_type': 'cipd', 'packages': [{'package': 'dart/third_party/flutter/devtools', 'version': 'git_revision:226af81369622cce9c0d98adbe31598208a27cc0'}]},
342+
{'dep_type': 'cipd', 'packages': [{'package': 'dart/third_party/flutter/devtools', 'version': 'git_revision:23f534022870c4ab0f9c40a18191ffe1163e47f9'}]},
343343

344344
'src/third_party/dart/third_party/pkg/args':
345-
Var('dart_git') + '/args.git@03386ba1cc338086af46f1c742ef944c6a402862',
345+
Var('dart_git') + '/args.git@7dc7fe0430709229ccc87c3eaae729aeffe10c56',
346346

347347
'src/third_party/dart/third_party/pkg/async':
348-
Var('dart_git') + '/async.git@e83d054b3ea0ff6cb25e5849c5408cd7c4fc1d3f',
348+
Var('dart_git') + '/async.git@24266cafbba7703b82c652d454baa5df09402f8f',
349349

350350
'src/third_party/dart/third_party/pkg/bazel_worker':
351-
Var('dart_git') + '/bazel_worker.git@3d9cd5823fc96872b7275fe99a4fabc4dcfe57c8',
351+
Var('dart_git') + '/bazel_worker.git@372b8b514c7342465f58627a2418910f76120db9',
352352

353353
'src/third_party/dart/third_party/pkg/boolean_selector':
354-
Var('dart_git') + '/boolean_selector.git@caea8d41cab1b7f4cc3c86d15a27c011ab01766b',
354+
Var('dart_git') + '/boolean_selector.git@be88351e521648d381b96350bfe62c34abacee6d',
355355

356356
'src/third_party/dart/third_party/pkg/browser_launcher':
357357
Var('dart_git') + '/browser_launcher.git' + '@' + Var('dart_browser_launcher_rev'),
358358

359359
'src/third_party/dart/third_party/pkg/cli_util':
360-
Var('dart_git') + '/cli_util.git@e5b38ac76887e6eefaf417f5222c317929eed278',
360+
Var('dart_git') + '/cli_util.git@ffeb5d2869b44b28d1b9035b540d164af44f3f1c',
361361

362362
'src/third_party/dart/third_party/pkg/clock':
363363
Var('dart_git') + '/clock.git' + '@' + Var('dart_clock_rev'),
@@ -366,76 +366,76 @@ deps = {
366366
Var('dart_git') + '/collection.git' + '@' + Var('dart_collection_rev'),
367367

368368
'src/third_party/dart/third_party/pkg/convert':
369-
Var('dart_git') + '/convert.git@f8a72d67a10805bca358be8d7e189a62f79d86b9',
369+
Var('dart_git') + '/convert.git@d4d6368cffb8f4f25522875ef8e1d5f7d158bbad',
370370

371371
'src/third_party/dart/third_party/pkg/crypto':
372-
Var('dart_git') + '/crypto.git@f2efb981b461dcae43d0cf18a3a970142abfee35',
372+
Var('dart_git') + '/crypto.git@c9540156d875e3645b030e2eb9c40a322818aaf5',
373373

374374
'src/third_party/dart/third_party/pkg/csslib':
375-
Var('dart_git') + '/csslib.git@ec86ee57c89f683352e66c55542bcc1daa425c13',
375+
Var('dart_git') + '/csslib.git@62ae85e84590f61169fddbca650e91a57544834b',
376376

377377
'src/third_party/dart/third_party/pkg/dart_style':
378378
Var('dart_git') + '/dart_style.git@633b01cba68f4b42ddc2985c3d521c22149d5ce3',
379379

380380
'src/third_party/dart/third_party/pkg/dartdoc':
381-
Var('dart_git') + '/dartdoc.git@5cac62b6071c899d52553fcd417ca5faeeb507c1',
381+
Var('dart_git') + '/dartdoc.git@457c34ec5adf39edfdabb3d2bb509e60f1e41fc7',
382382

383383
'src/third_party/dart/third_party/pkg/file':
384-
Var('dart_git') + '/external/github.com/google/file.dart@cd3a9324f6483f313ba1f0f3ff382ea4e6982ef2',
384+
Var('dart_git') + '/external/github.com/google/file.dart@3aa06490bf34bddf04c7ea964a50c177a4ca0de7',
385385

386386
'src/third_party/dart/third_party/pkg/fixnum':
387-
Var('dart_git') + '/fixnum.git@3e08c0d7ce1a0cd832a17391444898ec610b5f89',
387+
Var('dart_git') + '/fixnum.git@570b28adcfbfdd5b8a7230ea1d6ec0f9587493f1',
388388

389389
'src/third_party/dart/third_party/pkg/glob':
390-
Var('dart_git') + '/glob.git@7c9a121e92687b7ac6456ec0796eb1e5c0373d90',
390+
Var('dart_git') + '/glob.git@ef5f0650f66dc64587b11757fe3303538cfeb1d8',
391391

392392
'src/third_party/dart/third_party/pkg/html':
393-
Var('dart_git') + '/html.git@910f6d703ed0193318fb095be09e8ddf1bec3e05',
393+
Var('dart_git') + '/html.git@327e37a6a4dd46599737ee982f280d73a8f646f7',
394394

395395
'src/third_party/dart/third_party/pkg/http':
396396
Var('dart_git') + '/http.git@f0a02f98f7c921e86ecc81c70f38bb6fbccc81b9',
397397

398398
'src/third_party/dart/third_party/pkg/http_multi_server':
399-
Var('dart_git') + '/http_multi_server.git@491f7c613198d38c489ee0010b9c5377ad29afde',
399+
Var('dart_git') + '/http_multi_server.git@ba9d07f3596b24718ddf45c9e071d40879cca565',
400400

401401
'src/third_party/dart/third_party/pkg/http_parser':
402-
Var('dart_git') + '/http_parser.git@224c1a9d24b46c7a9da1f09147e0e1fbda78089d',
402+
Var('dart_git') + '/http_parser.git@84db8b029d9b51859a0bb4966859af009f9442e3',
403403

404404
'src/third_party/dart/third_party/pkg/intl':
405405
Var('dart_git') + '/intl.git@5d65e3808ce40e6282e40881492607df4e35669f',
406406

407407
'src/third_party/dart/third_party/pkg/json_rpc_2':
408-
Var('dart_git') + '/json_rpc_2.git@ac1fabddd51fc90aa6fa4e1248f1a7141899eb4a',
408+
Var('dart_git') + '/json_rpc_2.git@639857be892050159f5164c749d7947694976a4a',
409409

410410
'src/third_party/dart/third_party/pkg/leak_tracker':
411411
Var('dart_git') + '/leak_tracker.git@4a5b077739886f61bd6dc11c78865ef487c917c2',
412412

413413
'src/third_party/dart/third_party/pkg/logging':
414-
Var('dart_git') + '/logging.git@e04942dadc6ed9ed177ab0c6b8d0e80a789cd176',
414+
Var('dart_git') + '/logging.git@cbaf4ee2e59c318d7519edb5381f5fe2a7f69587',
415415

416416
'src/third_party/dart/third_party/pkg/markdown':
417-
Var('dart_git') + '/markdown.git@a8288ca3a3023228f1a8a832b78d00e11f0c4b30',
417+
Var('dart_git') + '/markdown.git@c2b842937787bc0dce1763d56e7551b9045deb42',
418418

419419
'src/third_party/dart/third_party/pkg/matcher':
420-
Var('dart_git') + '/matcher.git@d9cf4f69e3f557718ab5be042dd5503afcacac51',
420+
Var('dart_git') + '/matcher.git@d954c8d979579b4b46427b0ea1d9c721117c191e',
421421

422422
'src/third_party/dart/third_party/pkg/mime':
423-
Var('dart_git') + '/mime.git@99fbdcc745e2f2cfb85be4a4c6c7b520cd25c2dd',
423+
Var('dart_git') + '/mime.git@9a168712d6db610c3822617c132daea72d4fd2b5',
424424

425425
'src/third_party/dart/third_party/pkg/mockito':
426-
Var('dart_git') + '/mockito.git@0422551a774cbf72eea87ba80e71f7b5d81199f3',
426+
Var('dart_git') + '/mockito.git@7d6632fd679f0f6aae32ee74038ba8cb6b64a607',
427427

428428
'src/third_party/dart/third_party/pkg/native':
429-
Var('dart_git') + '/native.git@0eafd544d6ebce07b42007560ae9e0858c885d89',
429+
Var('dart_git') + '/native.git@876f9a1948c1642a57640ef9b1526746042a17eb',
430430

431431
'src/third_party/dart/third_party/pkg/package_config':
432-
Var('dart_git') + '/package_config.git@5a0bc197fde3db2907d0e35e0470e601bee20845',
432+
Var('dart_git') + '/package_config.git@4a7042bb286cf0b41b26e87972bc28bda535f8b9',
433433

434434
'src/third_party/dart/third_party/pkg/path':
435-
Var('dart_git') + '/path.git@57a049cff2e2be7a302dd9683b2b194c6d06e2d4',
435+
Var('dart_git') + '/path.git@a7b696071bd83d3ee0a0f1b57ac94d6b1f05cac4',
436436

437437
'src/third_party/dart/third_party/pkg/pool':
438-
Var('dart_git') + '/pool.git@4c490001446d8ba3d361b99d8befd6a4f61abc7a',
438+
Var('dart_git') + '/pool.git@782da82fedca4e5776e43ba321543ed2b20373b2',
439439

440440
'src/third_party/dart/third_party/pkg/protobuf':
441441
Var('dart_git') + '/protobuf.git' + '@' + Var('dart_protobuf_rev'),
@@ -444,52 +444,52 @@ deps = {
444444
Var('dart_git') + '/pub.git' + '@' + Var('dart_pub_rev'),
445445

446446
'src/third_party/dart/third_party/pkg/pub_semver':
447-
Var('dart_git') + '/pub_semver.git@45721813dea1591a7689f93762afa358cbf260c7',
447+
Var('dart_git') + '/pub_semver.git@3175ba0a58a96fb23f8d68b5f5c44d1a5b30cc16',
448448

449449
'src/third_party/dart/third_party/pkg/shelf':
450-
Var('dart_git') + '/shelf.git@823966f0cb4fa26d549d31ca07c5d7b19bb9f842',
450+
Var('dart_git') + '/shelf.git@b432620f109b92c0399261722aa28c4d8d9a385c',
451451

452452
'src/third_party/dart/third_party/pkg/source_map_stack_trace':
453-
Var('dart_git') + '/source_map_stack_trace.git@220962658bf67304207aedc7eeedca6ef64a7c72',
453+
Var('dart_git') + '/source_map_stack_trace.git@c75649651d01826236e3ab7093d277a70756905a',
454454

455455
'src/third_party/dart/third_party/pkg/source_maps':
456-
Var('dart_git') + '/source_maps.git@87dc58736b5bd334502005cdbd4d325aba9bc696',
456+
Var('dart_git') + '/source_maps.git@55e92a4b0a8560d5b2b3bb7255249afdb8186ea6',
457457

458458
'src/third_party/dart/third_party/pkg/source_span':
459-
Var('dart_git') + '/source_span.git@9398e2464e24d2f15cccfa1199381a6247403829',
459+
Var('dart_git') + '/source_span.git@21a403a75b6887fbd811fb53b74b08c2cef67ab6',
460460

461461
'src/third_party/dart/third_party/pkg/sse':
462-
Var('dart_git') + '/sse.git@8d2e2f0d00a5b46f005c621a3b23465ce7348724',
462+
Var('dart_git') + '/sse.git@e483b1413bdaae14a102a80d559b3cfcbd0adcce',
463463

464464
'src/third_party/dart/third_party/pkg/stack_trace':
465-
Var('dart_git') + '/stack_trace.git@0f4710c9d2678530501e1e88c77f955b68450325',
465+
Var('dart_git') + '/stack_trace.git@155f12c51226d6372f6722f5e55c38ef39625006',
466466

467467
'src/third_party/dart/third_party/pkg/stream_channel':
468-
Var('dart_git') + '/stream_channel.git@178104d0f1316b0120cf0031b8dbae0cbfec4c26',
468+
Var('dart_git') + '/stream_channel.git@851336fada8759aa3a2e9ce344844d48dee67495',
469469

470470
'src/third_party/dart/third_party/pkg/string_scanner':
471-
Var('dart_git') + '/string_scanner.git@ebc30a3dec2552bbdb481099180618c22c122b69',
471+
Var('dart_git') + '/string_scanner.git@a2bcdb575f6bb30b944b4f632ea95d8dc4f914bd',
472472

473473
'src/third_party/dart/third_party/pkg/tar':
474474
Var('dart_git') + '/external/github.com/simolus3/tar.git@0fc831c6e93be5342d4863d9e464428e73007cce',
475475

476476
'src/third_party/dart/third_party/pkg/term_glyph':
477-
Var('dart_git') + '/term_glyph.git@4c5a49664ee78b62c35de528cec5a9469bb84936',
477+
Var('dart_git') + '/term_glyph.git@85a4aa6bf25cd6ecaa5c56a1b259b2d95264a439',
478478

479479
'src/third_party/dart/third_party/pkg/test':
480-
Var('dart_git') + '/test.git@6700049d5de97906d033f4271f67f7599090bf4e',
480+
Var('dart_git') + '/test.git@a3f05ec8b16df6815a10d02ad4bc07e22dfda74d',
481481

482482
'src/third_party/dart/third_party/pkg/test_reflective_loader':
483-
Var('dart_git') + '/test_reflective_loader.git@6edf5358b53bfda487840bad1a03d089326fa08c',
483+
Var('dart_git') + '/test_reflective_loader.git@9862703a3d14848376c8efde271c88022fba91eb',
484484

485485
'src/third_party/dart/third_party/pkg/tools':
486486
Var('dart_git') + '/tools.git' + '@' + Var('dart_tools_rev'),
487487

488488
'src/third_party/dart/third_party/pkg/typed_data':
489-
Var('dart_git') + '/typed_data.git@6f6d81d64cd698f8def5116fc97b7b1fb7441696',
489+
Var('dart_git') + '/typed_data.git@375efaa02a13dad0785cfbd9bdcb9f09aa8ef529',
490490

491491
'src/third_party/dart/third_party/pkg/usage':
492-
Var('dart_git') + '/usage.git@e99690ae6d5fa9ec24ac5218bcd3621e8e3ae8a9',
492+
Var('dart_git') + '/usage.git@67ecd7d1328347ec15cbf8d8a46918df75a66af8',
493493

494494
'src/third_party/dart/third_party/pkg/watcher':
495495
Var('dart_git') + '/watcher.git' + '@' + Var('dart_watcher_rev'),
@@ -504,7 +504,7 @@ deps = {
504504
Var('dart_git') + '/external/github.com/google/webkit_inspection_protocol.dart.git' + '@' + Var('dart_webkit_inspection_protocol_rev'),
505505

506506
'src/third_party/dart/third_party/pkg/yaml':
507-
Var('dart_git') + '/yaml.git@509fd72c0910746bf25db9c7d890b4c47c286a8c',
507+
Var('dart_git') + '/yaml.git@e5984433a2803d5c67ed0abac5891a55040381ee',
508508

509509
'src/third_party/dart/third_party/pkg/yaml_edit':
510510
Var('dart_git') + '/yaml_edit.git' + '@' + Var('dart_yaml_edit_rev'),

ci/licenses_golden/excluded_files

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -116,14 +116,14 @@
116116
../../../flutter/fml/synchronization/sync_switch_unittest.cc
117117
../../../flutter/fml/synchronization/waitable_event_unittest.cc
118118
../../../flutter/fml/task_source_unittests.cc
119-
../../../flutter/fml/thread_local_unittests.cc
120119
../../../flutter/fml/thread_unittests.cc
121120
../../../flutter/fml/time/time_delta_unittest.cc
122121
../../../flutter/fml/time/time_point_unittest.cc
123122
../../../flutter/fml/time/time_unittest.cc
124123
../../../flutter/impeller/.clang-format
125124
../../../flutter/impeller/.gitignore
126125
../../../flutter/impeller/README.md
126+
../../../flutter/impeller/aiks/aiks_blur_unittests.cc
127127
../../../flutter/impeller/aiks/aiks_gradient_unittests.cc
128128
../../../flutter/impeller/aiks/aiks_path_unittests.cc
129129
../../../flutter/impeller/aiks/aiks_unittests.cc
@@ -176,6 +176,7 @@
176176
../../../flutter/impeller/renderer/backend/vulkan/context_vk_unittests.cc
177177
../../../flutter/impeller/renderer/backend/vulkan/descriptor_pool_vk_unittests.cc
178178
../../../flutter/impeller/renderer/backend/vulkan/fence_waiter_vk_unittests.cc
179+
../../../flutter/impeller/renderer/backend/vulkan/render_pass_cache_unittests.cc
179180
../../../flutter/impeller/renderer/backend/vulkan/resource_manager_vk_unittests.cc
180181
../../../flutter/impeller/renderer/backend/vulkan/test
181182
../../../flutter/impeller/renderer/blit_pass_unittests.cc

0 commit comments

Comments
 (0)