Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(186)

Side by Side Diff: build/config/android/config.gni

Issue 2181053002: android: dcheck_always_on sets BuildConfig.IS_DCHECK (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix findbugs Created 4 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « base/android/java/templates/BuildConfig.template ('k') | build/config/android/rules.gni » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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 }
OLDNEW
« no previous file with comments | « base/android/java/templates/BuildConfig.template ('k') | build/config/android/rules.gni » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698