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

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

Issue 1644753002: Make base work on iOS (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: rebase Created 4 years, 10 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 | « base/time/time_mac.cc ('k') | no next file » | 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) ],
(...skipping 171 matching lines...) Expand 10 before | Expand all | Expand 10 after
182 android_app_abi = "mips" 182 android_app_abi = "mips"
183 } else if (current_cpu == "x64") { 183 } else if (current_cpu == "x64") {
184 android_app_abi = "x86_64" 184 android_app_abi = "x86_64"
185 } else if (current_cpu == "arm64") { 185 } else if (current_cpu == "arm64") {
186 android_app_abi = "arm64-v8a" 186 android_app_abi = "arm64-v8a"
187 } else if (current_cpu == "mips64el") { 187 } else if (current_cpu == "mips64el") {
188 android_app_abi = "mips64" 188 android_app_abi = "mips64"
189 } else { 189 } else {
190 assert(false, "Unknown Android ABI: " + current_cpu) 190 assert(false, "Unknown Android ABI: " + current_cpu)
191 } 191 }
192
193 android_log_tag = "\"chromium\""
192 } 194 }
OLDNEW
« no previous file with comments | « base/time/time_mac.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698