Lines Matching +full:arm64 +full:- +full:v8a
3 # Use of this source code is governed by a BSD-style license that can be
6 set -e
9 if [ $# -lt 1 ] ; then
10 echo "Usage: "$0" [--debug-libs] stack-trace-file"
11 echo " --debug-libs uses Debug (rather than Release) libraries."
16 if [[ "$1" == "--debug-libs" ]] ; then
21 if [ ! -f "$1" ] ; then
26 # try to automatically identify architecture and version, if there are no user-
28 if [ -z $ARCH ] ; then
29 if grep -q arm64 "$1" ; then
30 ARCH=arm64-v8a
31 elif grep -q armeabi-v7a "$1" ; then
32 ARCH=armeabi-v7a
33 elif grep -q armeabi "$1" ; then
35 elif grep -q "ABI: 'arm'" "$1" ; then
36 ARCH=armeabi-v7a
37 elif grep -q "ABI: 'arm64'" "$1" ; then
38 ARCH=arm64-v8a
39 elif grep -q "ABI: 'x86_64'" "$1" ; then
41 elif grep -q "ABI: 'x86'" "$1" ; then
49 if [ -z "$VERSION" ] ; then
50 VERSION=$(grep -o -m1 'libcronet\..*\.so' "$1" |
60 if [[ "$ARCH" == "arm64-v8a" ]] ; then
61 ARCHOPT="--arch=arm64"
66 $GSUTIL -m cp -R gs://chromium-cronet/android/${FILE} ~/Downloads