Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 37823d1e authored by Colin Cross's avatar Colin Cross
Browse files

Don't depend on art's boot-image-profile.txt in thin manifests

Use $(wildcard) to avoid referencing art/build/boot/boot-image-profile.txt
in thin manifests that don't have the art project.

Bug: 207813628
Test: tradefed build
Change-Id: I5d23834f4e8484d2c51b916b6e8395ee23315487
parent 3a294b6c
Loading
Loading
Loading
Loading
+5 −1
Original line number Diff line number Diff line
@@ -76,7 +76,11 @@ PRODUCT_APEX_SYSTEM_SERVER_JARS := \
    com.android.media:service-media-s \
    com.android.permission:service-permission \

# Use $(wildcard) to avoid referencing the profile in thin manifests that don't have the
# art project.
ifneq (,$(wildcard art))
  PRODUCT_DEX_PREOPT_BOOT_IMAGE_PROFILE_LOCATION += art/build/boot/boot-image-profile.txt
endif

# List of jars on the platform that system_server loads dynamically using separate classloaders.
# Keep the list sorted library names.