vendor_module_check.mk revision dbff3f5b77fa898175d823736188deb6bf72f419
1#
2# Copyright (C) 2011 The Android Open Source Project
3#
4# Licensed under the Apache License, Version 2.0 (the "License");
5# you may not use this file except in compliance with the License.
6# You may obtain a copy of the License at
7#
8#      http://www.apache.org/licenses/LICENSE-2.0
9#
10# Unless required by applicable law or agreed to in writing, software
11# distributed under the License is distributed on an "AS IS" BASIS,
12# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13# See the License for the specific language governing permissions and
14# limitations under the License.
15#
16
17# Restrict the vendor module owners here.
18_vendor_owner_whitelist := \
19	broadcom \
20	csr \
21	imgtec \
22	invensense \
23	nxp \
24	samsung \
25	samsung_arm \
26	ti \
27	widevine
28
29
30ifneq (,$(PRODUCTS.$(INTERNAL_PRODUCT).PRODUCT_RESTRICT_VENDOR_FILES))
31
32_check_modules := $(sort $(PRODUCTS.$(INTERNAL_PRODUCT).PRODUCT_PACKAGES))
33
34# expand with the required modules
35# $(1) the module name set to expand
36define _expand_required_modules
37$(eval _erm_new_modules:=)\
38$(foreach m, $(1), $(eval r:=$(ALL_MODULES.$(m).REQUIRED))\
39  $(if $(r), $(if $(filter $(_check_modules), $(r)),,\
40    $(eval _check_modules := $(_check_modules) $(r))\
41    $(eval _erm_new_modules := $(_erm_new_modules) $(r)))))\
42$(if $(_erm_new_modules), $(call _expand_required_modules, $(_erm_new_modules)))
43endef
44
45$(call _expand_required_modules, $(_check_modules))
46
47
48# Restrict owners
49ifneq (,$(filter true owner all, $(PRODUCTS.$(INTERNAL_PRODUCT).PRODUCT_RESTRICT_VENDOR_FILES)))
50
51ifneq (,$(filter vendor/%, $(PRODUCT_PACKAGE_OVERLAYS) $(DEVICE_PACKAGE_OVERLAYS)))
52$(error Error: Product "$(TARGET_PRODUCT)" can not have overlay in vendor tree: \
53    $(filter vendor/%, $(PRODUCT_PACKAGE_OVERLAYS) $(DEVICE_PACKAGE_OVERLAYS)))
54endif
55ifneq (,$(filter vendor/%, $(PRODUCT_COPY_FILES)))
56$(error Error: Product "$(TARGET_PRODUCT)" can not have PRODUCT_COPY_FILES from vendor tree: \
57    $(filter vendor/%, $(PRODUCT_COPY_FILES)))
58endif
59
60$(foreach m, $(_check_modules), \
61  $(if $(filter vendor/%, $(ALL_MODULES.$(m).PATH)),\
62    $(if $(filter $(_vendor_owner_whitelist), $(ALL_MODULES.$(m).OWNER)),,\
63      $(error Error: vendor module "$(m)" in $(ALL_MODULES.$(m).PATH) with unknown owner \
64        "$(ALL_MODULES.$(m).OWNER)" in product "$(TARGET_PRODUCT)"))))
65
66endif
67
68
69# Restrict paths
70ifneq (,$(filter path all, $(PRODUCTS.$(INTERNAL_PRODUCT).PRODUCT_RESTRICT_VENDOR_FILES)))
71
72$(foreach m, $(_check_modules), \
73  $(if $(filter vendor/%, $(ALL_MODULES.$(m).PATH)),\
74    $(if $(filter $(TARGET_OUT_VENDOR)/%, $(ALL_MODULES.$(m).INSTALLED)),,\
75      $(error Error: vendor module "$(m)" in $(ALL_MODULES.$(m).PATH) \
76        in product "$(TARGET_PRODUCT)" being installed to \
77        $(ALL_MODULES.$(m).INSTALLED) which is not in the vendor tree))))
78
79endif
80
81endif
82