Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code

Delta Between Two Patch Sets: Makefile

Issue 29329913: Issue 3296 - Enable ia32/x86 Android builds (Closed)
Left Patch Set: Created Nov. 10, 2015, 11:39 a.m.
Right Patch Set: Column alignment, moved a var def Created Nov. 10, 2015, 11:55 a.m.
Left:
Right:
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
Left: Side by side diff | Download
Right: Side by side diff | Download
« no previous file with change/comment | « no previous file | libadblockplus.gyp » ('j') | no next file with change/comment »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
LEFTRIGHT
1 ARCH := x64 1 ARCH := x64
2 2
3 ANDROID_PARAMETERS = OS=android
3 ifneq ($(ANDROID_ARCH),) 4 ifneq ($(ANDROID_ARCH),)
4 ANDROID_PARAMETERS = OS=android
Felix Dahlke 2015/11/10 11:50:46 No column aligning please :D Also, not having anyt
René Jeschke 2015/11/10 11:55:53 Done.
5 ifeq ($(ANDROID_ARCH),arm) 5 ifeq ($(ANDROID_ARCH),arm)
6 ANDROID_PARAMETERS += target_arch=arm android_target_arch=arm 6 ANDROID_PARAMETERS += target_arch=arm android_target_arch=arm
7 ANDROID_PARAMETERS += arm_neon=0 armv7=0 arm_fpu=off vfp3=off 7 ANDROID_PARAMETERS += arm_neon=0 armv7=0 arm_fpu=off vfp3=off
8 ANDROID_PARAMETERS += arm_float_abi=default 8 ANDROID_PARAMETERS += arm_float_abi=default
9 ANDROID_ABI = armeabi-v7a 9 ANDROID_ABI = armeabi-v7a
10 else ifeq ($(ANDROID_ARCH),ia32) 10 else ifeq ($(ANDROID_ARCH),ia32)
11 ANDROID_PARAMETERS += target_arch=x86 android_target_arch=x86 11 ANDROID_PARAMETERS += target_arch=x86 android_target_arch=x86
12 ANDROID_ABI = x86 12 ANDROID_ABI = x86
13 else 13 else
14 $(error "Unsupported Android architecture: $(ANDROID_ARCH)) 14 $(error "Unsupported Android architecture: $(ANDROID_ARCH))
(...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after
60 APP_ABI=$(ANDROID_ABI) \ 60 APP_ABI=$(ANDROID_ABI) \
61 APP_PLATFORM=android-9 \ 61 APP_PLATFORM=android-9 \
62 APP_STL=c++_static \ 62 APP_STL=c++_static \
63 APP_BUILD_SCRIPT=Makefile \ 63 APP_BUILD_SCRIPT=Makefile \
64 NDK_TOOLCHAIN_VERSION=clang3.4 \ 64 NDK_TOOLCHAIN_VERSION=clang3.4 \
65 NDK_PROJECT_PATH=. \ 65 NDK_PROJECT_PATH=. \
66 NDK_OUT=. \ 66 NDK_OUT=. \
67 NDK_APP_DST_DIR=$(ANDROID_DEST_DIR) 67 NDK_APP_DST_DIR=$(ANDROID_DEST_DIR)
68 endif 68 endif
69 69
LEFTRIGHT
« no previous file | libadblockplus.gyp » ('j') | Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Toggle Comments ('s')

Powered by Google App Engine
This is Rietveld