diff options
author | 2024-09-23 21:54:04 +0000 | |
---|---|---|
committer | 2024-09-23 21:54:04 +0000 | |
commit | df1c59a657e4c45f7452ab8b608aea155b8931aa (patch) | |
tree | 30c7994230236bbb1b72d6956bc871f7cad50abb /aconfig/codegen/init.go | |
parent | 9cf2e8e1403b5e057aca10870080adbe3e621f83 (diff) |
Revert "pass read new storage parameter to java codegen"
This reverts commit 9cf2e8e1403b5e057aca10870080adbe3e621f83.
Reason for revert:DroidMonitor - Potential culprit for http://b/369200837 - Verifying through ABTD before submission.
Change-Id: I635ba732fba40b7c73b5c419ef204fb14e857cb2
Diffstat (limited to 'aconfig/codegen/init.go')
-rw-r--r-- | aconfig/codegen/init.go | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/aconfig/codegen/init.go b/aconfig/codegen/init.go index ed0b3ed7f..98d288f0a 100644 --- a/aconfig/codegen/init.go +++ b/aconfig/codegen/init.go @@ -32,7 +32,6 @@ var ( ` --mode ${mode}` + ` --cache ${in}` + ` --out ${out}.tmp` + - ` --allow-instrumentation ${debug}` + ` && $soong_zip -write_if_changed -jar -o ${out} -C ${out}.tmp -D ${out}.tmp` + ` && rm -rf ${out}.tmp`, CommandDeps: []string{ @@ -40,7 +39,7 @@ var ( "$soong_zip", }, Restat: true, - }, "mode", "debug") + }, "mode") // For cc_aconfig_library: Generate C++ library cppRule = pctx.AndroidStaticRule("cc_aconfig_library", |