OLD | NEW |
---|---|
1 #!/bin/bash | 1 #!/bin/bash |
2 | 2 |
3 # Copyright (c) 2012 The Chromium Authors. All rights reserved. | 3 # Copyright (c) 2012 The Chromium Authors. All rights reserved. |
4 # Use of this source code is governed by a BSD-style license that can be | 4 # Use of this source code is governed by a BSD-style license that can be |
5 # found in the LICENSE file. | 5 # found in the LICENSE file. |
6 | 6 |
7 # Defines functions for envsetup.sh which sets up environment for building | 7 # Defines functions for envsetup.sh which sets up environment for building |
8 # Chromium on Android. The build can be either use the Android NDK/SDK or | 8 # Chromium on Android. The build can be either use the Android NDK/SDK or |
9 # android source tree. Each has a unique init function which calls functions | 9 # android source tree. Each has a unique init function which calls functions |
10 # prefixed with "common_" that is common for both environment setups. | 10 # prefixed with "common_" that is common for both environment setups. |
(...skipping 148 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
159 export ANDROID_SDK_ROOT="${CHROME_SRC}/third_party/android_tools/sdk/" | 159 export ANDROID_SDK_ROOT="${CHROME_SRC}/third_party/android_tools/sdk/" |
160 fi | 160 fi |
161 | 161 |
162 # Makes sure ANDROID_BUILD_TOP is unset if build has option --sdk | 162 # Makes sure ANDROID_BUILD_TOP is unset if build has option --sdk |
163 unset ANDROID_BUILD_TOP | 163 unset ANDROID_BUILD_TOP |
164 | 164 |
165 # Set default target. | 165 # Set default target. |
166 export TARGET_PRODUCT="${TARGET_PRODUCT:-trygon}" | 166 export TARGET_PRODUCT="${TARGET_PRODUCT:-trygon}" |
167 | 167 |
168 # Android sdk platform version to use | 168 # Android sdk platform version to use |
169 export ANDROID_SDK_VERSION=15 | 169 export ANDROID_SDK_VERSION=16 |
170 # Unset toolchain so that it can be set based on TARGET_PRODUCT. | 170 # Unset toolchain so that it can be set based on TARGET_PRODUCT. |
171 # This makes it easy to switch between architectures. | 171 # This makes it easy to switch between architectures. |
172 unset ANDROID_TOOLCHAIN | 172 unset ANDROID_TOOLCHAIN |
173 | 173 |
174 common_vars_defines | 174 common_vars_defines |
175 | 175 |
176 DEFINES+=" sdk_build=1" | 176 DEFINES+=" sdk_build=1" |
177 # If we are building NDK/SDK, and in the upstream (open source) tree, | 177 # If we are building NDK/SDK, and in the upstream (open source) tree, |
178 # define a special variable for bringup purposes. | 178 # define a special variable for bringup purposes. |
179 case "${ANDROID_BUILD_TOP-undefined}" in | 179 case "${ANDROID_BUILD_TOP-undefined}" in |
(...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
220 ############################################################################# | 220 ############################################################################# |
221 non_sdk_build_init() { | 221 non_sdk_build_init() { |
222 # We export "TOP" here so that "mmm" can be run to build Java code without | 222 # We export "TOP" here so that "mmm" can be run to build Java code without |
223 # having to cd to $ANDROID_BUILD_TOP. | 223 # having to cd to $ANDROID_BUILD_TOP. |
224 export TOP="$ANDROID_BUILD_TOP" | 224 export TOP="$ANDROID_BUILD_TOP" |
225 | 225 |
226 # We export "ANDROID_NDK_ROOT" for building Chromium for Android by NDK. | 226 # We export "ANDROID_NDK_ROOT" for building Chromium for Android by NDK. |
227 export ANDROID_NDK_ROOT=${ANDROID_BUILD_TOP}/prebuilts/ndk/android-ndk-r7 | 227 export ANDROID_NDK_ROOT=${ANDROID_BUILD_TOP}/prebuilts/ndk/android-ndk-r7 |
228 | 228 |
229 # Android sdk platform version to use | 229 # Android sdk platform version to use |
230 export ANDROID_SDK_VERSION=15 | 230 export ANDROID_SDK_VERSION=15 |
Yaron
2012/08/06 18:12:49
Seems this should be 16 as well.
navabi
2012/08/07 01:17:07
Since this is copied and pasted between sdk_build_
| |
231 | 231 |
232 # We export "ANDROID_SDK_ROOT" for building Java source with the SDK. | 232 # We export "ANDROID_SDK_ROOT" for building Java source with the SDK. |
233 export ANDROID_SDK_ROOT=${ANDROID_BUILD_TOP}/prebuilts/sdk/\ | 233 export ANDROID_SDK_ROOT=${ANDROID_BUILD_TOP}/prebuilts/sdk/\ |
234 ${ANDROID_SDK_VERSION} | 234 ${ANDROID_SDK_VERSION} |
235 # Needed by android antfiles when creating apks. | 235 # Needed by android antfiles when creating apks. |
236 export ANDROID_SDK_HOME=${ANDROID_SDK_ROOT} | 236 export ANDROID_SDK_HOME=${ANDROID_SDK_ROOT} |
237 | 237 |
238 common_vars_defines | 238 common_vars_defines |
239 | 239 |
240 DEFINES+=" sdk_build=0" | 240 DEFINES+=" sdk_build=0" |
(...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
282 | 282 |
283 export GYP_GENERATORS="android" | 283 export GYP_GENERATORS="android" |
284 | 284 |
285 export GYP_GENERATOR_FLAGS="${GYP_GENERATOR_FLAGS} default_target=All" | 285 export GYP_GENERATOR_FLAGS="${GYP_GENERATOR_FLAGS} default_target=All" |
286 export GYP_GENERATOR_FLAGS="${GYP_GENERATOR_FLAGS} limit_to_target_all=1" | 286 export GYP_GENERATOR_FLAGS="${GYP_GENERATOR_FLAGS} limit_to_target_all=1" |
287 export GYP_GENERATOR_FLAGS="${GYP_GENERATOR_FLAGS} auto_regeneration=0" | 287 export GYP_GENERATOR_FLAGS="${GYP_GENERATOR_FLAGS} auto_regeneration=0" |
288 | 288 |
289 # TODO(torne): This isn't upstream yet. Upstream it or remove this setting. | 289 # TODO(torne): This isn't upstream yet. Upstream it or remove this setting. |
290 export CHROMIUM_GYP_FILE="${CHROME_SRC}/build/all_android_webview.gyp" | 290 export CHROMIUM_GYP_FILE="${CHROME_SRC}/build/all_android_webview.gyp" |
291 } | 291 } |
OLD | NEW |