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

Commit 3c547dbd authored by Troy Wang's avatar Troy Wang Committed by Android (Google) Code Review
Browse files

Merge "Include logpersist.start into the package based on a product var" into main

parents 87d436e0 6296cf7d
Loading
Loading
Loading
Loading
+2 −0
Original line number Diff line number Diff line
@@ -609,6 +609,8 @@ $(call end_json_map)

$(call add_json_list, ProductHostPackages, $(PRODUCT_HOST_PACKAGES))

$(call add_json_bool, ProductEnableLogcatPersistence, $(PRODUCT_ENABLE_LOGCAT_PERSISTENCE))

$(call add_json_bool, EnforceSELinuxTrebleLabeling, $(filter true,$(PRODUCT_ENFORCE_SELINUX_TREBLE_LABELING)))

$(call json_end)
+11 −0
Original line number Diff line number Diff line
@@ -554,6 +554,17 @@ PRODUCT_PACKAGES_DEBUG := \
    unwind_reg_info \
    unwind_symbols \

# Enable logcat persistence based on the release config flag.
ifeq ($(RELEASE_ENABLE_LOGCAT_PERSISTENCE),true)
  PRODUCT_ENABLE_LOGCAT_PERSISTENCE := $(RELEASE_ENABLE_LOGCAT_PERSISTENCE)
endif

# Include logpersist build target if logcat persistence is enabled.
ifeq ($(PRODUCT_ENABLE_LOGCAT_PERSISTENCE),true)
    PRODUCT_PACKAGES += \
        logpersist.start
endif

# The set of packages whose code can be loaded by the system server.
PRODUCT_SYSTEM_SERVER_APPS += \
    SettingsProvider \