Home | History | Annotate | Download | only in libcore

Lines Matching full:cacerts

33 LOCAL_ADDITIONAL_DEPENDENCIES := $(LOCAL_PATH)/CaCerts.mk
42 cacerts := $(call all-files-under,luni/src/main/files/cacerts)
44 cacerts_target_directory := $(TARGET_OUT)/etc/security/cacerts
45 $(foreach cacert, $(cacerts), $(eval $(call include-prebuilt-with-destination-directory,target-cacert-$(notdir $(cacert)),$(cacert),$(cacerts_target_directory))))
46 cacerts_target := $(addprefix $(cacerts_target_directory)/,$(foreach cacert,$(cacerts),$(notdir $(cacert))))
48 cacerts: $(cacerts_target)
50 # This is so that build/target/product/core.mk can use cacerts in PRODUCT_PACKAGES
51 ALL_MODULES.cacerts.INSTALLED := $(cacerts_target)
53 cacerts_host_directory := $(HOST_OUT)/etc/security/cacerts
54 $(foreach cacert, $(cacerts), $(eval $(call include-prebuilt-with-destination-directory,host-cacert-$(notdir $(cacert)),$(cacert),$(cacerts_host_directory))))
56 cacerts_host := $(addprefix $(cacerts_host_directory)/,$(foreach cacert,$(cacerts),$(notdir $(cacert))))
57 .PHONY: cacerts-host
58 cacerts-host: $(cacerts_host)