| 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 25 matching lines...) Expand all Loading... |
| 36 android_default_keystore_password = "chromium" | 36 android_default_keystore_password = "chromium" |
| 37 | 37 |
| 38 # This is a unique identifier for a given build. It's used for | 38 # This is a unique identifier for a given build. It's used for |
| 39 # identifying various build artifacts corresponding to a particular build of | 39 # identifying various build artifacts corresponding to a particular build of |
| 40 # chrome (e.g. where to find archived symbols). | 40 # chrome (e.g. where to find archived symbols). |
| 41 android_chrome_build_id = "\"\"" | 41 android_chrome_build_id = "\"\"" |
| 42 | 42 |
| 43 # Set to true to run findbugs on JAR targets. | 43 # Set to true to run findbugs on JAR targets. |
| 44 run_findbugs = false | 44 run_findbugs = false |
| 45 | 45 |
| 46 # Set to true to enable verbose findbugs logging. This does nothing if |
| 47 # run_findbugs is false. |
| 48 findbugs_verbose = false |
| 49 |
| 46 # Set to true to enable the Errorprone compiler | 50 # Set to true to enable the Errorprone compiler |
| 47 use_errorprone_java_compiler = false | 51 use_errorprone_java_compiler = false |
| 48 } | 52 } |
| 49 | 53 |
| 50 # Host stuff ----------------------------------------------------------------- | 54 # Host stuff ----------------------------------------------------------------- |
| 51 | 55 |
| 52 # Defines the name the Android build gives to the current host CPU | 56 # Defines the name the Android build gives to the current host CPU |
| 53 # architecture, which is different than the names GN uses. | 57 # architecture, which is different than the names GN uses. |
| 54 if (host_cpu == "x64") { | 58 if (host_cpu == "x64") { |
| 55 android_host_arch = "x86_64" | 59 android_host_arch = "x86_64" |
| (...skipping 131 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 187 } else if (current_cpu == "x64") { | 191 } else if (current_cpu == "x64") { |
| 188 android_app_abi = "x86_64" | 192 android_app_abi = "x86_64" |
| 189 } else if (current_cpu == "arm64") { | 193 } else if (current_cpu == "arm64") { |
| 190 android_app_abi = "arm64-v8a" | 194 android_app_abi = "arm64-v8a" |
| 191 } else if (current_cpu == "mips64el") { | 195 } else if (current_cpu == "mips64el") { |
| 192 android_app_abi = "mips64" | 196 android_app_abi = "mips64" |
| 193 } else { | 197 } else { |
| 194 assert(false, "Unknown Android ABI: " + current_cpu) | 198 assert(false, "Unknown Android ABI: " + current_cpu) |
| 195 } | 199 } |
| 196 } | 200 } |
| OLD | NEW |