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

Unified Diff: experimental/fiddle/fiddle_test

Issue 1895143002: experimental/fiddle -> tools/fiddle (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Created 4 years, 8 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « experimental/fiddle/fiddle_main.cpp ('k') | experimental/fiddle/fiddler.go » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: experimental/fiddle/fiddle_test
diff --git a/experimental/fiddle/fiddle_test b/experimental/fiddle/fiddle_test
deleted file mode 100755
index c95ac7f2349fb8fea96d57fe9055e15932d57fee..0000000000000000000000000000000000000000
--- a/experimental/fiddle/fiddle_test
+++ /dev/null
@@ -1,33 +0,0 @@
-#!/bin/sh
-# Copyright 2015 Google Inc.
-#
-# Use of this source code is governed by a BSD-style license that can be
-# found in the LICENSE file.
-
-# Script for building Fiddle build bots.
-
-set -e
-set -x
-
-cd "$(dirname "$0")/../.."
-skia_dir="$PWD"
-
-if ! command -v cmake > /dev/null 2>&1 ; then
- cores=32
- echo "Bootstrapping CMake"
- cmake_dir="${skia_dir}/third_party/externals/cmake"
- cd "$cmake_dir"
- ./bootstrap --parallel=$cores
- make -j $cores cmake
- export PATH="${cmake_dir}/bin:${PATH}"
-fi
-
-echo "Building Skia and Fiddle"
-cd "${skia_dir}/experimental/fiddle"
-git clean -fxd .
-go build fiddler.go
-./fiddler "$skia_dir"
-./fiddler "$skia_dir" draw.cpp > /dev/null
-
-echo "cleaning up"
-git clean -fxd .
« 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