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 59 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
70 # chrome (e.g. where to find archived symbols). | 70 # chrome (e.g. where to find archived symbols). |
71 android_chrome_build_id = "\"\"" | 71 android_chrome_build_id = "\"\"" |
72 | 72 |
73 # Set to true to run findbugs on JAR targets. | 73 # Set to true to run findbugs on JAR targets. |
74 run_findbugs = false | 74 run_findbugs = false |
75 | 75 |
76 # Set to true to enable verbose findbugs logging. This does nothing if | 76 # Set to true to enable verbose findbugs logging. This does nothing if |
77 # run_findbugs is false. | 77 # run_findbugs is false. |
78 findbugs_verbose = false | 78 findbugs_verbose = false |
79 | 79 |
| 80 # Enables verbose proguard output (summaries and unfiltered output). |
| 81 proguard_verbose = false |
| 82 |
80 # Set to true to enable the Errorprone compiler | 83 # Set to true to enable the Errorprone compiler |
81 use_errorprone_java_compiler = false | 84 use_errorprone_java_compiler = false |
82 | 85 |
83 # Enables EMMA Java code coverage. Instruments classes during build to | 86 # Enables EMMA Java code coverage. Instruments classes during build to |
84 # produce .ec files during runtime | 87 # produce .ec files during runtime |
85 emma_coverage = false | 88 emma_coverage = false |
86 | 89 |
87 # EMMA filter string consisting of a list of inclusion/exclusion patterns | 90 # EMMA filter string consisting of a list of inclusion/exclusion patterns |
88 # separated with whitespace and/or comma. Only has effect if | 91 # separated with whitespace and/or comma. Only has effect if |
89 # emma_coverage==true | 92 # emma_coverage==true |
(...skipping 153 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
243 } else if (current_cpu == "x64") { | 246 } else if (current_cpu == "x64") { |
244 android_app_abi = "x86_64" | 247 android_app_abi = "x86_64" |
245 } else if (current_cpu == "arm64") { | 248 } else if (current_cpu == "arm64") { |
246 android_app_abi = "arm64-v8a" | 249 android_app_abi = "arm64-v8a" |
247 } else if (current_cpu == "mips64el") { | 250 } else if (current_cpu == "mips64el") { |
248 android_app_abi = "mips64" | 251 android_app_abi = "mips64" |
249 } else { | 252 } else { |
250 assert(false, "Unknown Android ABI: " + current_cpu) | 253 assert(false, "Unknown Android ABI: " + current_cpu) |
251 } | 254 } |
252 } | 255 } |
OLD | NEW |