aboutsummaryrefslogtreecommitdiffhomepage
path: root/platform_tools/chromeos/bin/build_skia_in_chroot
diff options
context:
space:
mode:
Diffstat (limited to 'platform_tools/chromeos/bin/build_skia_in_chroot')
-rwxr-xr-xplatform_tools/chromeos/bin/build_skia_in_chroot42
1 files changed, 0 insertions, 42 deletions
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 86f6d33841..0000000000
--- 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 newline at end of file