Reland [android] Migrate more configs to gyp.
This reverts commit e93e4dad63
.
BUG=chromium:502176
LOG=n
NOTRY=true
TBR=ulan@chromium.org, jochen@chromium.org
Review URL: https://codereview.chromium.org/1213803002
Cr-Commit-Position: refs/heads/master@{#29323}
This commit is contained in:
parent
af4c4b0427
commit
7879474601
@ -35,28 +35,24 @@ MODES = release debug
|
||||
ANDROID_BUILDS = $(foreach mode,$(MODES), \
|
||||
$(addsuffix .$(mode),$(ANDROID_ARCHES)))
|
||||
|
||||
HOST_OS = $(shell uname -s | sed -e 's/Linux/linux/;s/Darwin/mac/')
|
||||
|
||||
ifeq ($(ARCH), android_arm)
|
||||
DEFINES = target_arch=arm v8_target_arch=arm android_target_arch=arm android_target_platform=16
|
||||
DEFINES += arm_neon=0 arm_version=7
|
||||
DEFINES = target_arch=arm v8_target_arch=arm
|
||||
else ifeq ($(ARCH), android_arm64)
|
||||
DEFINES = target_arch=arm64 v8_target_arch=arm64 android_target_arch=arm64 android_target_platform=21
|
||||
DEFINES = target_arch=arm64 v8_target_arch=arm64
|
||||
else ifeq ($(ARCH), android_mipsel)
|
||||
DEFINES = target_arch=mipsel v8_target_arch=mipsel android_target_platform=16
|
||||
DEFINES += android_target_arch=mips mips_arch_variant=mips32r2
|
||||
DEFINES = target_arch=mipsel v8_target_arch=mipsel
|
||||
else ifeq ($(ARCH), android_ia32)
|
||||
DEFINES = target_arch=ia32 v8_target_arch=ia32 android_target_arch=x86 android_target_platform=16
|
||||
DEFINES = target_arch=ia32 v8_target_arch=ia32
|
||||
else ifeq ($(ARCH), android_x64)
|
||||
DEFINES = target_arch=x64 v8_target_arch=x64 android_target_arch=x86_64 android_target_platform=21
|
||||
DEFINES = target_arch=x64 v8_target_arch=x64
|
||||
else ifeq ($(ARCH), android_x87)
|
||||
DEFINES = target_arch=x87 v8_target_arch=x87 android_target_arch=x86 android_target_platform=16
|
||||
DEFINES = target_arch=ia32 v8_target_arch=x87
|
||||
else
|
||||
$(error Target architecture "${ARCH}" is not supported)
|
||||
endif
|
||||
|
||||
# Common flags.
|
||||
DEFINES += host_os=${HOST_OS} OS=android
|
||||
DEFINES += OS=android
|
||||
|
||||
.SECONDEXPANSION:
|
||||
$(ANDROID_BUILDS): $(OUTDIR)/Makefile.$$@
|
||||
|
@ -222,31 +222,50 @@
|
||||
|
||||
# Copy conditionally-set variables out one scope.
|
||||
'android_ndk_root%': '<(android_ndk_root)',
|
||||
'host_os%': '<(host_os)',
|
||||
|
||||
'conditions': [
|
||||
['target_arch == "ia32"', {
|
||||
'android_toolchain%': '<(android_ndk_root)/toolchains/x86-4.9/prebuilt/<(host_os)-<(android_host_arch)/bin',
|
||||
'android_target_arch%': 'x86',
|
||||
'android_target_platform%': '16',
|
||||
}],
|
||||
['target_arch == "x64"', {
|
||||
'android_toolchain%': '<(android_ndk_root)/toolchains/x86_64-4.9/prebuilt/<(host_os)-<(android_host_arch)/bin',
|
||||
'android_target_arch%': 'x86_64',
|
||||
'android_target_platform%': '21',
|
||||
}],
|
||||
['target_arch=="arm"', {
|
||||
'android_toolchain%': '<(android_ndk_root)/toolchains/arm-linux-androideabi-4.9/prebuilt/<(host_os)-<(android_host_arch)/bin',
|
||||
'android_target_arch%': 'arm',
|
||||
'android_target_platform%': '16',
|
||||
'arm_version%': 7,
|
||||
}],
|
||||
['target_arch == "arm64"', {
|
||||
'android_toolchain%': '<(android_ndk_root)/toolchains/aarch64-linux-android-4.9/prebuilt/<(host_os)-<(android_host_arch)/bin',
|
||||
'android_target_arch%': 'arm64',
|
||||
'android_target_platform%': '21',
|
||||
'arm_version%': 'default',
|
||||
}],
|
||||
['target_arch == "mipsel"', {
|
||||
'android_toolchain%': '<(android_ndk_root)/toolchains/mipsel-linux-android-4.9/prebuilt/<(host_os)-<(android_host_arch)/bin',
|
||||
'android_target_arch%': 'mips',
|
||||
'android_target_platform%': '16',
|
||||
}],
|
||||
['target_arch == "mips64el"', {
|
||||
'android_toolchain%': '<(android_ndk_root)/toolchains/mips64el-linux-android-4.9/prebuilt/<(host_os)-<(android_host_arch)/bin',
|
||||
'android_target_arch%': 'mips64',
|
||||
'android_target_platform%': '21',
|
||||
}],
|
||||
],
|
||||
},
|
||||
|
||||
# Copy conditionally-set variables out one scope.
|
||||
'android_target_arch%': '<(android_target_arch)',
|
||||
'android_target_platform%': '<(android_target_platform)',
|
||||
'android_toolchain%': '<(android_toolchain)',
|
||||
'arm_version%': '<(arm_version)',
|
||||
'host_os%': '<(host_os)',
|
||||
|
||||
'conditions': [
|
||||
['android_ndk_root==""', {
|
||||
@ -310,6 +329,11 @@
|
||||
'target_defaults': {
|
||||
'variables': {
|
||||
'v8_code%': '<(v8_code)',
|
||||
'conditions':[
|
||||
['OS=="android"', {
|
||||
'host_os%': '<(host_os)',
|
||||
}],
|
||||
],
|
||||
},
|
||||
'default_configuration': 'Debug',
|
||||
'configurations': {
|
||||
|
Loading…
Reference in New Issue
Block a user