| 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 81 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 92 run_findbugs = false | 92 run_findbugs = false |
| 93 | 93 |
| 94 # Set to true to enable verbose findbugs logging. This does nothing if | 94 # Set to true to enable verbose findbugs logging. This does nothing if |
| 95 # run_findbugs is false. | 95 # run_findbugs is false. |
| 96 findbugs_verbose = false | 96 findbugs_verbose = false |
| 97 | 97 |
| 98 # Enables verbose proguard output (summaries and unfiltered output). | 98 # Enables verbose proguard output (summaries and unfiltered output). |
| 99 proguard_verbose = false | 99 proguard_verbose = false |
| 100 | 100 |
| 101 # Java debug on Android. Having this on enables multidexing, and turning it | 101 # Java debug on Android. Having this on enables multidexing, and turning it |
| 102 # off will enable proguard. To access this flag from within Java code, look | 102 # off will enable proguard. |
| 103 # at BuildConfig.IS_DEBUG, which is wired to this arg. | |
| 104 is_java_debug = is_debug | 103 is_java_debug = is_debug |
| 105 | 104 |
| 106 # Set to true to enable the Errorprone compiler | 105 # Set to true to enable the Errorprone compiler |
| 107 use_errorprone_java_compiler = false | 106 use_errorprone_java_compiler = false |
| 108 | 107 |
| 109 # Enables EMMA Java code coverage. Instruments classes during build to | 108 # Enables EMMA Java code coverage. Instruments classes during build to |
| 110 # produce .ec files during runtime | 109 # produce .ec files during runtime |
| 111 emma_coverage = false | 110 emma_coverage = false |
| 112 | 111 |
| 113 # EMMA filter string consisting of a list of inclusion/exclusion patterns | 112 # EMMA filter string consisting of a list of inclusion/exclusion patterns |
| (...skipping 203 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 317 if (defined(android_secondary_abi_cpu)) { | 316 if (defined(android_secondary_abi_cpu)) { |
| 318 if (is_clang) { | 317 if (is_clang) { |
| 319 android_secondary_abi_toolchain = | 318 android_secondary_abi_toolchain = |
| 320 "//build/toolchain/android:clang_${android_secondary_abi_cpu}" | 319 "//build/toolchain/android:clang_${android_secondary_abi_cpu}" |
| 321 } else { | 320 } else { |
| 322 android_secondary_abi_toolchain = | 321 android_secondary_abi_toolchain = |
| 323 "//build/toolchain/android:${android_secondary_abi_cpu}" | 322 "//build/toolchain/android:${android_secondary_abi_cpu}" |
| 324 } | 323 } |
| 325 } | 324 } |
| 326 } | 325 } |
| OLD | NEW |