diff options
author | 2023-11-26 16:57:52 -0800 | |
---|---|---|
committer | 2023-11-27 11:37:52 +0000 | |
commit | db8d042c6dc12d9d1ba5ff2526ccc86a077570ca (patch) | |
tree | 60b926ac318e4d3c110828edbf665e63f2a95f71 | |
parent | 546179cb5b47ed851c7de5d9790e0580feb24e34 (diff) |
These targets don't work with eng checkbuilds, so disable them.
This unbreaks eng checkbuilds after https://r.android.com/2822402
Test: lunch aosp_panther-trunk_staging-eng ; m checkbuild
Change-Id: I3b835e5a8468153ac459e6b03624ae4e582cada1
-rw-r--r-- | Android.mk | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/Android.mk b/Android.mk index e47c9ce716..7e5903a90b 100644 --- a/Android.mk +++ b/Android.mk @@ -752,6 +752,10 @@ use-art-verify-none: # Clear locally used variables. TEST_ART_TARGET_SYNC_DEPS := +# These files only exist if this flag is off. WITH_DEXPREOPT_ART_BOOT_IMG_ONLY is the +# minimal dexpreopt mode we use on eng builds for build speed. +ifneq ($(WITH_DEXPREOPT_ART_BOOT_IMG_ONLY),true) + # Helper target that depends on boot image creation. # # Can be used, for example, to dump initialization failures: @@ -767,6 +771,8 @@ art-job-images: \ $(HOST_OUT_EXECUTABLES)/dex2oatds \ $(HOST_OUT_EXECUTABLES)/profman +endif # TARGET_BUILD_VARIANT == eng + ######################################################################## # Build a target that contains dex public SDK stubs for SDK version in the list. |