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

Side by Side Diff: experimental/webtry/setup/continue_install_jail.sh

Issue 619943002: complete overhaul of webtry work partition between jail and host (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Replace missing pre-build of jpeg, etc1, flags 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 | « experimental/webtry/setup/continue_install.sh ('k') | experimental/webtry/setup/setup_jail.sh » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 #!/bin/bash
2
3 # this script runs as root inside the chroot environment and updates the depot t ools, go environment,
4 # and skia source.
5
6 # need to mount /dev/shm first so that python will execute properly.
7
8 mount /dev/shm
9
10 SKIA_BUILD=/skia_build
11 cd ${SKIA_BUILD}
12
13 # Install depot_tools.
14 if [ -d depot_tools ]; then
15 (cd depot_tools && git pull);
16 else
17 git clone https://chromium.googlesource.com/chromium/tools/depot_tools.git;
18 fi
19 export PATH=$PATH:${SKIA_BUILD}/depot_tools
20
21 # Sometimes you need to test patches on the server, to do that uncomment
22 # the following commented out lines and update the PATCH env variable to the
23 # name of the codereview to use.
24
25 # rm -rf skia
26
27 # Checkout the skia code and dependencies.
28 mkdir skia
29 cd skia
30 gclient config --name . https://skia.googlesource.com/skia.git
31 gclient sync
32 git checkout master
33
34 # PATCH=issue196723021_100001.diff
35 # rm $PATCH
36 # wget https://codereview.chromium.org/download/$PATCH
37 # git apply $PATCH
38
39 SKIA_GYP_OUTPUT_DIR=${SKIA_BUILD}/skia/out GYP_GENERATORS=ninja ./gyp_skia -Dski a_gpu=0
40
41 ninja -C ${SKIA_BUILD}/skia/out/Release skia_lib libjpeg libSkKTX libetc1 flags
42
OLDNEW
« no previous file with comments | « experimental/webtry/setup/continue_install.sh ('k') | experimental/webtry/setup/setup_jail.sh » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698