Skip to content
Snippets Groups Projects
Commit 8c70622e authored by Treehugger Robot's avatar Treehugger Robot Committed by Gerrit Code Review
Browse files

Merge "Always build system and vendor policies (and related artifacts)."

parents 117d69fd 1f4a28b1
No related branches found
No related tags found
No related merge requests found
...@@ -195,9 +195,25 @@ LOCAL_MODULE_TAGS := optional ...@@ -195,9 +195,25 @@ LOCAL_MODULE_TAGS := optional
# as build/target/product/embedded.mk. # as build/target/product/embedded.mk.
# This conditional inclusion closely mimics the conditional logic # This conditional inclusion closely mimics the conditional logic
# inside init/init.cpp for loading SELinux policy from files. # inside init/init.cpp for loading SELinux policy from files.
ifeq ($(PRODUCT_SEPOLICY_SPLIT),true)
# Use split SELinux policy # Include precompiled policy, unless told otherwise.
ifneq ($(PRODUCT_PRECOMPILED_SEPOLICY),false)
LOCAL_REQUIRED_MODULES += \
precompiled_sepolicy \
precompiled_sepolicy.plat_and_mapping.sha256 \
endif # ($(PRODUCT_PRECOMPILED_SEPOLICY),false)
ifneq ($(PRODUCT_SEPOLICY_SPLIT),true)
# The following files are only allowed for non-Treble devices.
LOCAL_REQUIRED_MODULES += \
sepolicy \
vendor_service_contexts \
endif # ($(PRODUCT_SEPOLICY_SPLIT),true)
# These build targets are not used on non-Treble devices. However, we build these to avoid
# divergence between Treble and non-Treble devices.
LOCAL_REQUIRED_MODULES += \ LOCAL_REQUIRED_MODULES += \
$(platform_mapping_file) \ $(platform_mapping_file) \
$(addsuffix .cil,$(PLATFORM_SEPOLICY_COMPAT_VERSIONS)) \ $(addsuffix .cil,$(PLATFORM_SEPOLICY_COMPAT_VERSIONS)) \
...@@ -208,17 +224,6 @@ LOCAL_REQUIRED_MODULES += \ ...@@ -208,17 +224,6 @@ LOCAL_REQUIRED_MODULES += \
secilc \ secilc \
plat_sepolicy_vers.txt \ plat_sepolicy_vers.txt \
# Include precompiled policy, unless told otherwise
ifneq ($(PRODUCT_PRECOMPILED_SEPOLICY),false)
LOCAL_REQUIRED_MODULES += precompiled_sepolicy precompiled_sepolicy.plat_and_mapping.sha256
endif
else
# The following files are only allowed for non-Treble devices.
LOCAL_REQUIRED_MODULES += \
sepolicy \
vendor_service_contexts
endif
LOCAL_REQUIRED_MODULES += \ LOCAL_REQUIRED_MODULES += \
build_sepolicy \ build_sepolicy \
vendor_file_contexts \ vendor_file_contexts \
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment