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

Side by Side Diff: Makefile

Issue 29496585: Noissue - move host detecting script into libadblockplus repo (Closed) Base URL: https://github.com/adblockplus/libadblockplus.git
Patch Set: Created July 24, 2017, 12:54 p.m.
Left:
Right:
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | third_party/detect_v8_host_arch.py » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 V8_DIR :=$(shell pwd -L)/third_party/v8/ 1 V8_DIR :=$(shell pwd -L)/third_party/v8/
2 HOST_ARCH :=$(shell python ${V8_DIR}gypfiles/detect_v8_host_arch.py) 2 HOST_ARCH :=$(shell python third_party/detect_v8_host_arch.py)
3 3
4 GYP_PARAMETERS=host_arch=${HOST_ARCH} 4 GYP_PARAMETERS=host_arch=${HOST_ARCH}
5 5
6 ifndef HOST_OS 6 ifndef HOST_OS
7 raw_OS = $(shell uname -s) 7 raw_OS = $(shell uname -s)
8 ifeq (${raw_OS},Linux) 8 ifeq (${raw_OS},Linux)
9 HOST_OS=linux 9 HOST_OS=linux
10 else ifeq (${raw_OS},Darwin) 10 else ifeq (${raw_OS},Darwin)
11 HOST_OS=mac 11 HOST_OS=mac
12 endif 12 endif
(...skipping 105 matching lines...) Expand 10 before | Expand all | Expand 10 after
118 BUILDTYPE=Release \ 118 BUILDTYPE=Release \
119 APP_ABI=$(ANDROID_ABI) \ 119 APP_ABI=$(ANDROID_ABI) \
120 APP_PLATFORM=android-9 \ 120 APP_PLATFORM=android-9 \
121 APP_STL=c++_static \ 121 APP_STL=c++_static \
122 APP_BUILD_SCRIPT=Makefile \ 122 APP_BUILD_SCRIPT=Makefile \
123 NDK_PROJECT_PATH=. \ 123 NDK_PROJECT_PATH=. \
124 NDK_OUT=. \ 124 NDK_OUT=. \
125 NDK_APP_DST_DIR=$(ANDROID_DEST_DIR) 125 NDK_APP_DST_DIR=$(ANDROID_DEST_DIR)
126 endif 126 endif
127 127
OLDNEW
« no previous file with comments | « no previous file | third_party/detect_v8_host_arch.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld