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 assert(rebase_path("//", root_build_dir) == "../../", | 8 assert(rebase_path("//", root_build_dir) == "../../", |
9 "Android output directory must be nested 2 levels within src/ (" + | 9 "Android output directory must be nested 2 levels within src/ (" + |
10 "e.g.: out-gn/Debug). http://crbug.com/412935") | 10 "e.g.: out-gn/Debug). http://crbug.com/412935") |
(...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
66 | 66 |
67 # The path to the keystore to use for signing builds. | 67 # The path to the keystore to use for signing builds. |
68 android_keystore_path = default_android_keystore_path | 68 android_keystore_path = default_android_keystore_path |
69 | 69 |
70 # The name of the keystore to use for signing builds. | 70 # The name of the keystore to use for signing builds. |
71 android_keystore_name = default_android_keystore_name | 71 android_keystore_name = default_android_keystore_name |
72 | 72 |
73 # The password for the keystore to use for signing builds. | 73 # The password for the keystore to use for signing builds. |
74 android_keystore_password = default_android_keystore_password | 74 android_keystore_password = default_android_keystore_password |
75 | 75 |
76 # This is a unique identifier for a given build. It's used for | |
77 # identifying various build artifacts corresponding to a particular build of | |
78 # chrome (e.g. where to find archived symbols). | |
79 android_chrome_build_id = "\"\"" | |
80 | |
81 # Set to true to run findbugs on JAR targets. | 76 # Set to true to run findbugs on JAR targets. |
82 run_findbugs = false | 77 run_findbugs = false |
83 | 78 |
84 # Set to true to enable verbose findbugs logging. This does nothing if | 79 # Set to true to enable verbose findbugs logging. This does nothing if |
85 # run_findbugs is false. | 80 # run_findbugs is false. |
86 findbugs_verbose = false | 81 findbugs_verbose = false |
87 | 82 |
88 # Enables verbose proguard output (summaries and unfiltered output). | 83 # Enables verbose proguard output (summaries and unfiltered output). |
89 proguard_verbose = false | 84 proguard_verbose = false |
90 | 85 |
(...skipping 172 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
263 } else if (current_cpu == "mips64el") { | 258 } else if (current_cpu == "mips64el") { |
264 android_app_abi = "mips64" | 259 android_app_abi = "mips64" |
265 } else { | 260 } else { |
266 assert(false, "Unknown Android ABI: " + current_cpu) | 261 assert(false, "Unknown Android ABI: " + current_cpu) |
267 } | 262 } |
268 | 263 |
269 if (android_libcpp_lib_dir == "") { | 264 if (android_libcpp_lib_dir == "") { |
270 android_libcpp_lib_dir = "${android_libcpp_root}/libs/${android_app_abi}" | 265 android_libcpp_lib_dir = "${android_libcpp_root}/libs/${android_app_abi}" |
271 } | 266 } |
272 } | 267 } |
OLD | NEW |