Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(160)

Side by Side Diff: experimental/webtry/setup/continue_install

Issue 601203002: run the webtry build script instead of using go build (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Build release instead of debug Created 6 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698