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

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

Issue 1000793002: [Android] Incorporate findbugs into android builds. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: address cjhopman's comment + rebase Created 5 years, 9 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 | « build/android/pylib/utils/findbugs.py ('k') | build/config/android/internal_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 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 26 matching lines...) Expand all
37 37
38 android_default_keystore_path = 38 android_default_keystore_path =
39 "//build/android/ant/chromium-debug.keystore" 39 "//build/android/ant/chromium-debug.keystore"
40 android_default_keystore_name = "chromiumdebugkey" 40 android_default_keystore_name = "chromiumdebugkey"
41 android_default_keystore_password = "chromium" 41 android_default_keystore_password = "chromium"
42 42
43 # This is a unique identifier for a given build. It's used for 43 # This is a unique identifier for a given build. It's used for
44 # identifying various build artifacts corresponding to a particular build of 44 # identifying various build artifacts corresponding to a particular build of
45 # chrome (e.g. where to find archived symbols). 45 # chrome (e.g. where to find archived symbols).
46 android_chrome_build_id = "\"\"" 46 android_chrome_build_id = "\"\""
47
48 # Set to true to run findbugs on JAR targets.
49 run_findbugs = false
47 } 50 }
48 51
49 # Host stuff ----------------------------------------------------------------- 52 # Host stuff -----------------------------------------------------------------
50 53
51 # Defines the name the Android build gives to the current host CPU 54 # Defines the name the Android build gives to the current host CPU
52 # architecture, which is different than the names GN uses. 55 # architecture, which is different than the names GN uses.
53 if (host_cpu == "x64") { 56 if (host_cpu == "x64") {
54 android_host_arch = "x86_64" 57 android_host_arch = "x86_64"
55 } else if (host_cpu == "x86") { 58 } else if (host_cpu == "x86") {
56 android_host_arch = "x86" 59 android_host_arch = "x86"
(...skipping 130 matching lines...) Expand 10 before | Expand all | Expand 10 after
187 } else if (current_cpu == "mips64el") { 190 } else if (current_cpu == "mips64el") {
188 android_app_abi = "mips64" 191 android_app_abi = "mips64"
189 } else { 192 } else {
190 assert(false, "Unknown Android ABI: " + current_cpu) 193 assert(false, "Unknown Android ABI: " + current_cpu)
191 } 194 }
192 } else { 195 } else {
193 if (!defined(is_android_webview_build)) { 196 if (!defined(is_android_webview_build)) {
194 is_android_webview_build = false 197 is_android_webview_build = false
195 } 198 }
196 } 199 }
OLDNEW
« no previous file with comments | « build/android/pylib/utils/findbugs.py ('k') | build/config/android/internal_rules.gni » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698