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

Side by Side Diff: experimental/fiddle/fiddle_test

Issue 1349163003: experiment/fiddle (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: 2015-12-10 (Thursday) 10:34:44 EST Created 5 years 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/fiddle/fiddle_main.cpp ('k') | experimental/fiddle/fiddler.go » ('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/sh
2 # Copyright 2015 Google Inc.
3 #
4 # Use of this source code is governed by a BSD-style license that can be
5 # found in the LICENSE file.
6
7 # Script for building Fiddle build bots.
8
9 set -e
10 set -x
11
12 cd "$(dirname "$0")/../.."
13 skia_dir="$PWD"
14 cores=32
15
16 echo "Bootstrapping CMake"
17 cmake_dir="${skia_dir}/third_party/externals/cmake"
18 cd "$cmake_dir"
19 ./bootstrap --parallel=$cores
20 make -j $cores cmake
21
22 echo "Building fiddle bootstrapped CMake"
23 cd "${skia_dir}/experimental/fiddle"
24 export PATH="${cmake_dir}/bin:${PATH}"
25 go build fiddler.go
26 ./fiddler "$skia_dir"
27 ./fiddler "$skia_dir" draw.cpp > /dev/null
28
29 echo "cleaning up"
30 cd "$skia_dir"
31 git clean -fxd cmake experimental/fiddle
OLDNEW
« no previous file with comments | « experimental/fiddle/fiddle_main.cpp ('k') | experimental/fiddle/fiddler.go » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698