Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(64)

Side by Side Diff: build/config/android/config.gni

Issue 1297273003: Roll Android tools to Android M SDK. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix GN Created 5 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « build/common.gypi ('k') | build/config/compiler/BUILD.gn » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright 2014 The Chromium Authors. All rights reserved. 1 # Copyright 2014 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 # This file contains common system config stuff for the Android build. 5 # This file contains common system config stuff for the Android build.
6 6
7 if (is_android) { 7 if (is_android) {
8 has_chrome_android_internal = 8 has_chrome_android_internal =
9 exec_script("//build/dir_exists.py", 9 exec_script("//build/dir_exists.py",
10 [ rebase_path("//clank", root_build_dir) ], 10 [ rebase_path("//clank", root_build_dir) ],
11 "string") == "True" 11 "string") == "True"
12 12
13 if (has_chrome_android_internal) { 13 if (has_chrome_android_internal) {
14 import("//clank/config.gni") 14 import("//clank/config.gni")
15 } 15 }
16 16
17 if (!defined(default_android_sdk_root)) { 17 if (!defined(default_android_sdk_root)) {
18 default_android_sdk_root = "//third_party/android_tools/sdk" 18 default_android_sdk_root = "//third_party/android_tools/sdk"
19 default_android_sdk_version = "22" 19 default_android_sdk_version = "23"
20 default_android_sdk_build_tools_version = "22.0.0" 20 default_android_sdk_build_tools_version = "23.0.0"
21 } 21 }
22 22
23 if (!defined(google_play_services_library)) { 23 if (!defined(google_play_services_library)) {
24 google_play_services_library = 24 google_play_services_library =
25 "//third_party/android_tools:google_play_services_default_java" 25 "//third_party/android_tools:google_play_services_default_java"
26 } 26 }
27 27
28 if (!defined(google_play_services_resources)) { 28 if (!defined(google_play_services_resources)) {
29 google_play_services_resources = 29 google_play_services_resources =
30 "//third_party/android_tools:google_play_services_default_resources" 30 "//third_party/android_tools:google_play_services_default_resources"
(...skipping 161 matching lines...) Expand 10 before | Expand all | Expand 10 after
192 } else if (current_cpu == "x64") { 192 } else if (current_cpu == "x64") {
193 android_app_abi = "x86_64" 193 android_app_abi = "x86_64"
194 } else if (current_cpu == "arm64") { 194 } else if (current_cpu == "arm64") {
195 android_app_abi = "arm64-v8a" 195 android_app_abi = "arm64-v8a"
196 } else if (current_cpu == "mips64el") { 196 } else if (current_cpu == "mips64el") {
197 android_app_abi = "mips64" 197 android_app_abi = "mips64"
198 } else { 198 } else {
199 assert(false, "Unknown Android ABI: " + current_cpu) 199 assert(false, "Unknown Android ABI: " + current_cpu)
200 } 200 }
201 } 201 }
OLDNEW
« no previous file with comments | « build/common.gypi ('k') | build/config/compiler/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698