OLD | NEW |
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 146 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
157 } | 157 } |
158 | 158 |
159 android_tool_prefix = "$android_toolchain_root/bin/$_binary_prefix-" | 159 android_tool_prefix = "$android_toolchain_root/bin/$_binary_prefix-" |
160 android_readelf = "${android_tool_prefix}readelf" | 160 android_readelf = "${android_tool_prefix}readelf" |
161 android_objcopy = "${android_tool_prefix}objcopy" | 161 android_objcopy = "${android_tool_prefix}objcopy" |
162 android_gdbserver = | 162 android_gdbserver = |
163 "$android_ndk_root/prebuilt/$android_prebuilt_arch/gdbserver/gdbserver" | 163 "$android_ndk_root/prebuilt/$android_prebuilt_arch/gdbserver/gdbserver" |
164 | 164 |
165 # libc++ stuff --------------------------------------------------------------- | 165 # libc++ stuff --------------------------------------------------------------- |
166 | 166 |
| 167 android_libcpp_root = "$android_ndk_root/sources/cxx-stl/llvm-libc++" |
167 if (component_mode == "shared_library") { | 168 if (component_mode == "shared_library") { |
168 android_libcpp_library = "c++_shared" | 169 android_libcpp_library = "c++_shared" |
169 } else { | 170 } else { |
170 android_libcpp_library = "c++_static" | 171 android_libcpp_library = "c++_static" |
171 } | 172 } |
172 | 173 |
173 # ABI ------------------------------------------------------------------------ | 174 # ABI ------------------------------------------------------------------------ |
174 | 175 |
175 if (current_cpu == "x86") { | 176 if (current_cpu == "x86") { |
176 android_app_abi = "x86" | 177 android_app_abi = "x86" |
177 } else if (current_cpu == "arm") { | 178 } else if (current_cpu == "arm") { |
178 import("//build/config/arm.gni") | 179 import("//build/config/arm.gni") |
179 if (arm_version < 7) { | 180 if (arm_version < 7) { |
180 android_app_abi = "armeabi" | 181 android_app_abi = "armeabi" |
181 } else { | 182 } else { |
182 android_app_abi = "armeabi-v7a" | 183 android_app_abi = "armeabi-v7a" |
183 } | 184 } |
184 } else if (current_cpu == "mipsel") { | 185 } else if (current_cpu == "mipsel") { |
185 android_app_abi = "mips" | 186 android_app_abi = "mips" |
186 } else if (current_cpu == "x64") { | 187 } else if (current_cpu == "x64") { |
187 android_app_abi = "x86_64" | 188 android_app_abi = "x86_64" |
188 } else if (current_cpu == "arm64") { | 189 } else if (current_cpu == "arm64") { |
189 android_app_abi = "arm64-v8a" | 190 android_app_abi = "arm64-v8a" |
190 } else if (current_cpu == "mips64el") { | 191 } else if (current_cpu == "mips64el") { |
191 android_app_abi = "mips64" | 192 android_app_abi = "mips64" |
192 } else { | 193 } else { |
193 assert(false, "Unknown Android ABI: " + current_cpu) | 194 assert(false, "Unknown Android ABI: " + current_cpu) |
194 } | 195 } |
195 } | 196 } |
OLD | NEW |