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 147 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
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 # Toolchain stuff ------------------------------------------------------------ | 165 # Toolchain stuff ------------------------------------------------------------ |
166 | 166 |
167 android_libcpp_root = "$android_ndk_root/sources/cxx-stl/llvm-libc++" | 167 android_libcpp_root = "$android_ndk_root/sources/cxx-stl/llvm-libc++" |
168 if (component_mode == "shared_library") { | 168 if (is_component_build) { |
169 android_libcpp_library = "c++_shared" | 169 android_libcpp_library = "c++_shared" |
170 } else { | |
171 android_libcpp_library = "c++_static" | |
172 } | |
173 | |
174 if (component_mode == "shared_library") { | |
175 # By appending .cr, we prevent name collisions with libraries already | 170 # By appending .cr, we prevent name collisions with libraries already |
176 # loaded by the Android zygote. | 171 # loaded by the Android zygote. |
177 android_product_extension = ".cr.so" | 172 android_product_extension = ".cr.so" |
178 } else { | 173 } else { |
| 174 android_libcpp_library = "c++_static" |
179 android_product_extension = ".so" | 175 android_product_extension = ".so" |
180 } | 176 } |
181 | 177 |
182 # ABI ------------------------------------------------------------------------ | 178 # ABI ------------------------------------------------------------------------ |
183 | 179 |
184 if (current_cpu == "x86") { | 180 if (current_cpu == "x86") { |
185 android_app_abi = "x86" | 181 android_app_abi = "x86" |
186 } else if (current_cpu == "arm") { | 182 } else if (current_cpu == "arm") { |
187 import("//build/config/arm.gni") | 183 import("//build/config/arm.gni") |
188 if (arm_version < 7) { | 184 if (arm_version < 7) { |
189 android_app_abi = "armeabi" | 185 android_app_abi = "armeabi" |
190 } else { | 186 } else { |
191 android_app_abi = "armeabi-v7a" | 187 android_app_abi = "armeabi-v7a" |
192 } | 188 } |
193 } else if (current_cpu == "mipsel") { | 189 } else if (current_cpu == "mipsel") { |
194 android_app_abi = "mips" | 190 android_app_abi = "mips" |
195 } else if (current_cpu == "x64") { | 191 } else if (current_cpu == "x64") { |
196 android_app_abi = "x86_64" | 192 android_app_abi = "x86_64" |
197 } else if (current_cpu == "arm64") { | 193 } else if (current_cpu == "arm64") { |
198 android_app_abi = "arm64-v8a" | 194 android_app_abi = "arm64-v8a" |
199 } else if (current_cpu == "mips64el") { | 195 } else if (current_cpu == "mips64el") { |
200 android_app_abi = "mips64" | 196 android_app_abi = "mips64" |
201 } else { | 197 } else { |
202 assert(false, "Unknown Android ABI: " + current_cpu) | 198 assert(false, "Unknown Android ABI: " + current_cpu) |
203 } | 199 } |
204 } | 200 } |
OLD | NEW |