aboutsummaryrefslogtreecommitdiffhomepage
path: root/platform_tools
diff options
context:
space:
mode:
authorGravatar Eric Boren <borenet@google.com>2018-05-15 15:04:58 -0400
committerGravatar Skia Commit-Bot <skia-commit-bot@chromium.org>2018-05-15 19:36:23 +0000
commit0f690105496fa7f1de4bee85f4bf035cdefa84a8 (patch)
treeb484f387d2c0a2c24a7ace970f2513431e8f4beb /platform_tools
parent5ab841f18b61e5936bd078ba4a0713603c410845 (diff)
[recipes] BUILDTYPE and SKIA_OUT are no longer used
Bug: skia:6473 Change-Id: I67b0dbf6dba26233df1d8e44f3e2f69ca0cc9d3e Reviewed-on: https://skia-review.googlesource.com/128320 Commit-Queue: Eric Boren <borenet@google.com> Reviewed-by: Stephan Altmueller <stephana@google.com> Reviewed-by: Ben Wagner <benjaminwagner@google.com>
Diffstat (limited to 'platform_tools')
-rwxr-xr-xplatform_tools/android/bin/android_perf2
-rwxr-xr-xplatform_tools/ios/bin/ios_setup.sh10
2 files changed, 1 insertions, 11 deletions
diff --git a/platform_tools/android/bin/android_perf b/platform_tools/android/bin/android_perf
index 0d1d5e2e39..43285f044e 100755
--- a/platform_tools/android/bin/android_perf
+++ b/platform_tools/android/bin/android_perf
@@ -38,7 +38,7 @@ perf_setup() {
adb_pull_if_needed /system/lib/libm.so $TMP_SYS_LIB
adb_pull_if_needed /system/lib/libz.so $TMP_SYS_LIB
- # BUILDTYPE variable is set by android_setup.sh
+ # SKIA_OUT variable is set by android_setup.sh
if [ ! -f "${SKIA_OUT}/${runVars[0]}" ];
then
echo "Unable to find the ${runVars[0]} executable"
diff --git a/platform_tools/ios/bin/ios_setup.sh b/platform_tools/ios/bin/ios_setup.sh
index 265cadfedf..0490980346 100755
--- a/platform_tools/ios/bin/ios_setup.sh
+++ b/platform_tools/ios/bin/ios_setup.sh
@@ -28,16 +28,6 @@ CODE_SIGN_IDENTITY="iPhone Developer"
IOS_RESULTS_DIR="results"
-# BUILDTYPE is 'Debug' by default.
-if [[ -z "$BUILDTYPE" ]]; then
- BUILDTYPE="Debug"
-fi
-
-# Out dir is $SKIA_SRC_DIR/out by default.
-if [[ -z "$SKIA_OUT" ]]; then
- SKIA_OUT="$SKIA_SRC_DIR/out"
-fi
-
# Location of XCode build products.
if [[ -z "$XCODEBUILD" ]]; then
XCODEBUILD="${SKIA_SRC_DIR}/xcodebuild"