Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 #!/bin/bash | |
| 2 | |
| 3 # run_fiddle takes the hash of the fiddle as its only argument, and then: | |
| 4 # | |
| 5 # 1) runs fiddle_gyp to create the gyp file | |
| 6 # 2) runs ninja to build the executable | |
| 7 # 3) runs the resulting executable to generate the output .png file. | |
| 8 # | |
| 9 # the output PNG file goes into the inout directory, which is shared between the chroot | |
| 10 # jail and the webserver environment. | |
| 11 | |
| 12 [ -z "$SKIA_ROOT" ] && SKIA_ROOT="/skia_build/skia" | |
| 13 | |
| 14 cd $SKIA_ROOT/experimental/webtry/scripts | |
| 15 | |
| 16 ./fiddle_gyp $1 | |
| 17 ./fiddle_ninja $1 | |
| 18 ./fiddle_run $1 | |
|
jcgregorio
2014/10/01 16:39:50
fiddle_gyp, fiddle_ninja, and fiddle_run all need
humper
2014/10/01 17:02:44
Done.
| |
| OLD | NEW |