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

Side by Side Diff: platform_tools/barelinux/bin/arm64_make

Issue 258323002: arm64make script - fix error preventing Release testing. (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Created 6 years, 7 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 unified diff | Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 #!/bin/sh 1 #!/bin/sh
2 2
3 # Copyright 2014 Google Inc. 3 # Copyright 2014 Google Inc.
4 # 4 #
5 # Use of this source code is governed by a BSD-style license that can be 5 # Use of this source code is governed by a BSD-style license that can be
6 # found in the LICENSE file. 6 # found in the LICENSE file.
7 7
8 set -e # When any command fails, the shell will immediately exit. 8 set -e # When any command fails, the shell will immediately exit.
9 9
10 usage() { 10 usage() {
(...skipping 26 matching lines...) Expand all
37 case $opt in 37 case $opt in
38 c) export CC="$OPTARG" ;; 38 c) export CC="$OPTARG" ;;
39 x) export CXX="$OPTARG" ;; 39 x) export CXX="$OPTARG" ;;
40 o) export SKIA_OUT="$OPTARG";; 40 o) export SKIA_OUT="$OPTARG";;
41 t) BUILD_TYPE="$OPTARG";; 41 t) BUILD_TYPE="$OPTARG";;
42 h) usage || exit;; 42 h) usage || exit;;
43 ?) echo "unknown option '$OPTARG'" >&2; 43 ?) echo "unknown option '$OPTARG'" >&2;
44 usage || exit;; 44 usage || exit;;
45 esac 45 esac
46 done 46 done
47 OPTIND=1 # Reset this variable for calling barelinux_make with -t command flag.
47 48
48 export GYP_DEFINES="${GYP_DEFINES} \ 49 export GYP_DEFINES="${GYP_DEFINES} \
49 skia_gpu=0 \ 50 skia_gpu=0 \
50 skia_arch_type=arm64 \ 51 skia_arch_type=arm64 \
51 " 52 "
52 53
53 . "$(dirname "$0")/barelinux_make" -t "$BUILD_TYPE" 54 . "$(dirname "$0")/barelinux_make" -t "$BUILD_TYPE"
54 55
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698