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

Unified Diff: platform_tools/chromeos/bin/build_skia_in_chroot

Issue 1926163002: Delete ChromeOS code (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 | « gyp/views.gyp ('k') | platform_tools/chromeos/bin/chromeos_make » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: platform_tools/chromeos/bin/build_skia_in_chroot
diff --git a/platform_tools/chromeos/bin/build_skia_in_chroot b/platform_tools/chromeos/bin/build_skia_in_chroot
deleted file mode 100755
index 86f6d33841654736c18ba5aad1c3becda47927ed..0000000000000000000000000000000000000000
--- a/platform_tools/chromeos/bin/build_skia_in_chroot
+++ /dev/null
@@ -1,42 +0,0 @@
-#!/bin/bash
-
-# This script builds Skia inside of a ChromeOS chroot. It is intended to be run
-# either while inside the chroot or indirectly by running chromeos_make which
-# enters the chroot and runs this script.
-
-makeVars=""
-deviceID=""
-
-while (( "$#" )); do
-
- if [[ $(echo "$1" | grep "^-d$") != "" ]];
- then
- deviceID="$2"
- shift
- else
- makeVars="$makeVars $1"
- fi
-
-shift
-done
-
-SCRIPT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
-
-source $SCRIPT_DIR/chromeos_setup.sh
-
-setup_device $deviceID
-returnVal=$?
-if [ $returnVal != 0 ]
-then
- exit 1;
-fi
-
-python gyp_skia
-make ${makeVars}
-returnVal=$?
-if [ $returnVal != 0 ]
-then
- exit 1;
-fi
-
-echo > .cros_build_successful
« no previous file with comments | « gyp/views.gyp ('k') | platform_tools/chromeos/bin/chromeos_make » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698