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

Unified Diff: tools/build-tot-chromium.sh

Issue 132423002: Remove references to Skia's SVN repository (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Re-change first link in view.html and view-platform.html Created 6 years, 11 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 | « platform_tools/nacl/gclient.config ('k') | tools/buildbot_globals.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/build-tot-chromium.sh
diff --git a/tools/build-tot-chromium.sh b/tools/build-tot-chromium.sh
deleted file mode 100755
index 4dafa4d167490970230cb9de9e87c80fdc16c320..0000000000000000000000000000000000000000
--- a/tools/build-tot-chromium.sh
+++ /dev/null
@@ -1,59 +0,0 @@
-#!/bin/bash
-#
-# Author: Ravi Mistry
-#
-# Script to checkout and build a fresh copy of Chromium from head that uses a
-# writable, tip-of-tree Skia rather than the read-only, revision-locked Skia
-# specified in http://src.chromium.org/viewvc/chrome/trunk/src/DEPS
-#
-# Sample Usage:
-# tools/build-tot-chromium.sh ~/chromiumtrunk
-
-if [[ $# -ne 1 ]] ; then
- echo "usage: $0 chromium_location"
- exit 1
-fi
-CHROMIUM_LOCATION=$1
-
-echo -e "\n\n========Deleting $CHROMIUM_LOCATION========\n\n"
-rm -rf $CHROMIUM_LOCATION
-
-mkdir $CHROMIUM_LOCATION
-cd $CHROMIUM_LOCATION
-gclient config https://src.chromium.org/chrome/trunk/src
-echo '
-solutions = [
- { "name" : "src",
- "url" : "https://src.chromium.org/chrome/trunk/src",
- "deps_file" : "DEPS",
- "managed" : True,
- "custom_deps" : {
- "src/third_party/skia": "https://skia.googlecode.com/svn/trunk",
- "src/third_party/skia/gyp": None,
- "src/third_party/skia/src": None,
- "src/third_party/skia/include": None,
- },
- "safesync_url": "http://chromium-status.appspot.com/lkgr",
- },
-]
-' > .gclient
-
-echo -e "\n\n========Starting gclient sync========\n\n"
-START_TIME=$SECONDS
-gclient sync
-END_TIME=$SECONDS
-echo -e "\n\n========gclient sync took $((END_TIME - START_TIME)) seconds========\n\n"
-
-cd src
-rm -rf out/Debug out/Release
-GYP_GENERATORS='ninja' ./build/gyp_chromium
-
-echo -e "\n\n========Starting ninja build========\n\n"
-START_TIME=$SECONDS
-ninja -C out/Release chrome
-END_TIME=$SECONDS
-echo -e "\n\n========ninja build took $((END_TIME - START_TIME)) seconds========\n\n"
-
-SVN_VERSION=`svnversion .`
-echo -e "\n\n========The Chromium & Skia versions are $SVN_VERSION========\n\n"
-
« no previous file with comments | « platform_tools/nacl/gclient.config ('k') | tools/buildbot_globals.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698