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 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
49 # PATCH=issue196723021_100001.diff | 49 # PATCH=issue196723021_100001.diff |
50 # rm $PATCH | 50 # rm $PATCH |
51 # wget https://codereview.chromium.org/download/$PATCH | 51 # wget https://codereview.chromium.org/download/$PATCH |
52 # git apply $PATCH | 52 # git apply $PATCH |
53 | 53 |
54 GYP_GENERATORS=ninja ./gyp_skia gyp/webtry.gyp gyp/most.gyp -Dskia_gpu=0 | 54 GYP_GENERATORS=ninja ./gyp_skia gyp/webtry.gyp gyp/most.gyp -Dskia_gpu=0 |
55 ninja -C out/Debug webtry | 55 ninja -C out/Debug webtry |
56 | 56 |
57 cd experimental/webtry | 57 cd experimental/webtry |
58 | 58 |
| 59 go get github.com/mattn/go-sqlite3 |
59 go get github.com/go-sql-driver/mysql | 60 go get github.com/go-sql-driver/mysql |
60 go build webtry.go | 61 go build webtry.go |
OLD | NEW |