| OLD | NEW |
| 1 #!/bin/bash | 1 #!/bin/bash |
| 2 # | 2 # |
| 3 # Don't execute this script directly, instead it is copied into the webtry | 3 # Don't execute this script directly, instead it is copied into the webtry |
| 4 # user's directory and executed as the user webtry by the webtry_setup.sh | 4 # user's directory and executed as the user webtry by the webtry_setup.sh |
| 5 # script. | 5 # script. |
| 6 # | 6 # |
| 7 # See the README file for detailed installation instructions. | 7 # See the README file for detailed installation instructions. |
| 8 cd | 8 cd |
| 9 pwd | 9 pwd |
| 10 | 10 |
| (...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 46 gclient config --name . https://skia.googlesource.com/skia.git | 46 gclient config --name . https://skia.googlesource.com/skia.git |
| 47 gclient sync | 47 gclient sync |
| 48 git checkout master | 48 git checkout master |
| 49 | 49 |
| 50 # PATCH=issue196723021_100001.diff | 50 # PATCH=issue196723021_100001.diff |
| 51 # rm $PATCH | 51 # rm $PATCH |
| 52 # wget https://codereview.chromium.org/download/$PATCH | 52 # wget https://codereview.chromium.org/download/$PATCH |
| 53 # git apply $PATCH | 53 # git apply $PATCH |
| 54 | 54 |
| 55 GYP_GENERATORS=ninja ./gyp_skia gyp/webtry.gyp gyp/most.gyp -Dskia_gpu=0 | 55 GYP_GENERATORS=ninja ./gyp_skia gyp/webtry.gyp gyp/most.gyp -Dskia_gpu=0 |
| 56 ninja -C out/Debug webtry | 56 ninja -C out/Release webtry |
| 57 | 57 |
| 58 cd experimental/webtry | 58 cd experimental/webtry |
| 59 | 59 |
| 60 go get -d | 60 go get -d |
| 61 go build webtry.go | 61 ./build |
| OLD | NEW |