Home | History | Annotate | Download | only in sepolicy

Lines Matching full:file_contexts

197 LOCAL_MODULE := file_contexts.bin
204 # The file_contexts.bin is built in the following way:
205 # 1. Collect all file_contexts files in THIS repository and process them with
206 # m4 into a tmp file called file_contexts.local.tmp.
207 # 2. Collect all device specific file_contexts files and process them with m4
208 # into a tmp file called file_contexts.device.tmp.
210 # file_contexts.device.tmp and output to file_contexts.device.sorted.tmp.
211 # 4. Concatenate file_contexts.local.tmp and file_contexts.device.tmp into
212 # file_contexts.concat.tmp.
213 # 5. Run checkfc and sefcontext_compile on file_contexts.concat.tmp to produce
214 # file_contexts.bin.
219 local_fc_files := $(LOCAL_PATH)/file_contexts
225 file_contexts.local.tmp := $(intermediates)/file_contexts.local.tmp
226 $(file_contexts.local.tmp): $(local_fcfiles_with_nl)
230 device_fc_files := $(call build_device_policy, file_contexts)
233 file_contexts.device.tmp := $(intermediates)/file_contexts.device.tmp
234 $(file_contexts.device.tmp): PRIVATE_ADDITIONAL_M4DEFS := $(LOCAL_ADDITIONAL_M4DEFS)
235 $(file_contexts.device.tmp): $(device_fcfiles_with_nl)
239 file_contexts.device.sorted.tmp := $(intermediates)/file_contexts.device.sorted.tmp
240 $(file_contexts.device.sorted.tmp): PRIVATE_SEPOLICY := $(built_sepolicy)
241 $(file_contexts.device.sorted.tmp): $(file_contexts.device.tmp) $(built_sepolicy) $(HOST_OUT_EXECUTABLES)/fc_sort $(HOST_OUT_EXECUTABLES)/checkfc
246 file_contexts.concat.tmp := $(intermediates)/file_contexts.concat.tmp
247 $(file_contexts.concat.tmp): $(file_contexts.local.tmp) $(file_contexts.device.sorted.tmp)
252 $(LOCAL_BUILT_MODULE): $(file_contexts.concat.tmp) $(built_sepolicy) $(HOST_OUT_EXECUTABLES)/sefcontext_compile $(HOST_OUT_EXECUTABLES)/checkfc
262 file_contexts.concat.tmp :=
263 file_contexts.device.sorted.tmp :=
264 file_contexts.device.tmp :=
265 file_contexts.local.tmp :=
277 $(general_file_contexts.tmp): $(addprefix $(LOCAL_PATH)/, file_contexts)