[TOOLS] Disable android java static analysis

Java static analyses, which are active only in the debug version, are currently not working.
This commit is contained in:
Carmelo Messina
2025-05-25 16:39:10 +02:00
parent e1aa94c59e
commit b52e2f10b2
+6 -2
View File
@@ -4,10 +4,8 @@ build_contextual_search=false
build_with_tflite_lib=false
chrome_pgo_phase=0
dcheck_always_on=false
dfmify_dev_ui=false
disable_android_lint=true
disable_fieldtrial_testing_config=true
enable_gvr_services=false
enable_hangout_services_extension=false
enable_iterator_debugging=false
enable_mdns=false
@@ -119,6 +117,9 @@ if (target_os == "android") {
chrome_pgo_phase = 2 # enable pgo
# do not split Developer UI split into a separate Dynamic Feature Module
dfmify_dev_ui = false
if (getenv("USE_KEYSTORE") != "") {
android_keystore_path = "/home/lg/working_dir/cromite.keystore"
android_keystore_name = "cromite"
@@ -136,6 +137,9 @@ if (target_os == "android") {
symbol_level = 1
strip_debug_info = false
generate_linker_map = false
# Disable static analysis
android_static_analysis = "off"
} else {
generate_linker_map = true
}