File tree Expand file tree Collapse file tree 2 files changed +24
-1
lines changed Expand file tree Collapse file tree 2 files changed +24
-1
lines changed Original file line number Diff line number Diff line change @@ -34,7 +34,7 @@ vars = {
3434 # Dart is: https://github.com/dart-lang/sdk/blob/master/DEPS.
3535 # You can use //tools/dart/create_updated_flutter_deps.py to produce
3636 # updated revision list of existing dependencies.
37- 'dart_revision' : 'a4911c63f4f72ba571d6db94de56007b09f4af99 ' ,
37+ 'dart_revision' : '4cc36055d6803b899667feaedc1216a96e9d1c72 ' ,
3838
3939 # WARNING: DO NOT EDIT MANUALLY
4040 # The lines between blank lines above and below are generated by a script. See create_updated_flutter_deps.py
Original file line number Diff line number Diff line change 1+ #! /bin/bash
2+
3+ if [[ -z " $1 " ]]; then
4+ echo " Usage: $( basename $0 ) <engine_commit_hash>"
5+ exit 1
6+ fi
7+
8+ ENGINE_COMMIT=$1
9+ BUILDERS=$( curl ' https://ci.chromium.org/p/flutter/g/engine/builders' 2> /dev/null| sed -En ' s:.*aria-label="builder buildbucket/luci\.flutter\.prod/([^/]+)".*:\1:p' | sort| uniq)
10+
11+ # This property is only for hotfixes to branches prior to this feature being added
12+ # See https://github.com/flutter/engine/commit/abaac56c602cad3c1b3e41633bbfbe65200a1a3a
13+ NO_FONT_SUBSET=" -p build_font_subset=false"
14+
15+ IFS=$' \n '
16+ for BUILDER in $BUILDERS ; do
17+ echo " Building $BUILDER ..."
18+ bb add \
19+ -commit " https://chromium.googlesource.com/external/github.com/flutter/engine/+/$ENGINE_COMMIT " \
20+ " flutter/prod/$BUILDER " \
21+ $NO_FONT_SUBSET
22+ sleep 1
23+ done
You can’t perform that action at this time.
0 commit comments