OLD | NEW |
1 #!/usr/bin/env bash | 1 #!/usr/bin/env bash |
2 # | 2 # |
3 | 3 |
4 set -x | 4 set -x |
5 | 5 |
6 # generate_patches.sh [systems] | 6 # generate_patches.sh [systems] |
7 # | 7 # |
8 # Convenience script to generate patches for JsInterop under Dartium. Do not ca
ll from build steps or tests | 8 # Convenience script to generate patches for JsInterop under Dartium. Do not ca
ll from build steps or tests |
9 # - call fremontcutbuilder and dartdomgenerator instead. Do not add 'real' | 9 # - call fremontcutbuilder and dartdomgenerator instead. Do not add 'real' |
10 # functionality here - change the python code instead. | 10 # functionality here - change the python code instead. |
11 # | 11 # |
12 # I find it essential to generate all the systems so I know if I am breaking | 12 # I find it essential to generate all the systems so I know if I am breaking |
13 # other systems. My habit is to run: | 13 # other systems. My habit is to run: |
14 # | 14 # |
15 # ./go.sh | 15 # ./go.sh |
16 | 16 # |
17 # 1. After running go.sh libraries in sdk/lib may change. | 17 # 1. After running go.sh libraries in sdk/lib may change. |
18 # 2. Build Dartium. | 18 # 2. Build Dartium. |
19 # 3. Run this script and sdk/lib/js/dartium/cached_patches will be created. | 19 # 3. Run this script and sdk/lib/js/dartium/cached_patches will be created. |
20 # 4. Rebuild Dartium. | 20 # 4. Rebuild Dartium. |
21 # 5. Commit files in sdk/lib | 21 # 5. Commit files in sdk/lib |
| 22 # |
| 23 # NOTE: If the Dart files generated from the IDLs may cause major changes which |
| 24 # could cause the patch files to fail (missing classes, etc). If this |
| 25 # happens delete the contents of the sdk/lib/js/dartium/cached_patches.dar
t |
| 26 # build Dartium, run this script and build Dartium again with the newly |
| 27 # generated patches. |
22 | 28 |
23 LOCATION_DARTIUM="../../../out/Release" | 29 LOCATION_DARTIUM="../../../out/Release" |
24 DARTIUM="$LOCATION_DARTIUM" | 30 DARTIUM="$LOCATION_DARTIUM" |
25 | 31 |
26 DART_APP_LOCATION="file://"$PWD"/generate_app/generate_cached_patches.html" | 32 DART_APP_LOCATION="file://"$PWD"/generate_app/generate_cached_patches.html" |
27 DARTIUM_ARGS=" --user-data-dir=out --disable-web-security --no-sandbox --enable-
logging=stderr" | 33 DARTIUM_ARGS=" --user-data-dir=out --disable-web-security --no-sandbox --enable-
blink-features=dartGenCachedPatches" |
28 CACHED_PATCHES_FILE=""$PWD"/../../sdk/lib/js/dartium/cached_patches.dart" | 34 CACHED_PATCHES_FILE=""$PWD"/../../sdk/lib/js/dartium/cached_patches.dart" |
29 | 35 |
30 if [[ "$1" != "" ]] ; then | 36 if [[ "$1" != "" ]] ; then |
31 DARTIM="$1" | 37 DARTIM="$1" |
32 fi | 38 fi |
33 | 39 |
34 cmd=""$DARTIUM"/chrome "$DARTIUM_ARGS" "$DART_APP_LOCATION" 3>&1 1>&2- 2>&3 | \ | 40 cmd=""$DARTIUM"/chrome "$DARTIUM_ARGS" "$DART_APP_LOCATION" | |
35 (sed -n '/START_OF_CACHED_PATCHES/,/END_OF_CACHED_PATCHES/p') > "$CACHED_PATCH
ES_FILE"" | 41 (sed -n '/START_OF_CACHED_PATCHES/,/END_OF_CACHED_PATCHES/p') > "$CACHED_PATCH
ES_FILE"" |
36 | 42 |
37 reset && eval "${cmd}" | 43 reset && eval "${cmd}" |
38 | 44 |
39 | 45 |
OLD | NEW |