vendor_module_check.mk revision 000e89a5b95a1d3071277ff279263204f49cbd78
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	audience \
20	broadcom \
21	csr \
22	imgtec \
23	invensense \
24	nxp \
25	samsung \
26	samsung_arm \
27	ti \
28	widevine
29
30
31ifneq (,$(PRODUCTS.$(INTERNAL_PRODUCT).PRODUCT_RESTRICT_VENDOR_FILES))
32
33_vendor_check_modules := $(sort $(PRODUCTS.$(INTERNAL_PRODUCT).PRODUCT_PACKAGES))
34$(call expand-required-modules,_vendor_check_modules,$(_vendor_check_modules))
35
36# Restrict owners
37ifneq (,$(filter true owner all, $(PRODUCTS.$(INTERNAL_PRODUCT).PRODUCT_RESTRICT_VENDOR_FILES)))
38
39ifneq (,$(filter vendor/%, $(PRODUCT_PACKAGE_OVERLAYS) $(DEVICE_PACKAGE_OVERLAYS)))
40$(error Error: Product "$(TARGET_PRODUCT)" can not have overlay in vendor tree: \
41    $(filter vendor/%, $(PRODUCT_PACKAGE_OVERLAYS) $(DEVICE_PACKAGE_OVERLAYS)))
42endif
43ifneq (,$(filter vendor/%, $(PRODUCT_COPY_FILES)))
44$(error Error: Product "$(TARGET_PRODUCT)" can not have PRODUCT_COPY_FILES from vendor tree: \
45    $(filter vendor/%, $(PRODUCT_COPY_FILES)))
46endif
47
48$(foreach m, $(_vendor_check_modules), \
49  $(if $(filter vendor/%, $(ALL_MODULES.$(m).PATH)),\
50    $(if $(filter $(_vendor_owner_whitelist), $(ALL_MODULES.$(m).OWNER)),,\
51      $(error Error: vendor module "$(m)" in $(ALL_MODULES.$(m).PATH) with unknown owner \
52        "$(ALL_MODULES.$(m).OWNER)" in product "$(TARGET_PRODUCT)"))))
53
54endif
55
56
57# Restrict paths
58ifneq (,$(filter path all, $(PRODUCTS.$(INTERNAL_PRODUCT).PRODUCT_RESTRICT_VENDOR_FILES)))
59
60$(foreach m, $(_vendor_check_modules), \
61  $(if $(filter vendor/%, $(ALL_MODULES.$(m).PATH)),\
62    $(if $(filter $(TARGET_OUT_VENDOR)/%, $(ALL_MODULES.$(m).INSTALLED)),,\
63      $(error Error: vendor module "$(m)" in $(ALL_MODULES.$(m).PATH) \
64        in product "$(TARGET_PRODUCT)" being installed to \
65        $(ALL_MODULES.$(m).INSTALLED) which is not in the vendor tree))))
66
67endif
68
69_vendor_check_modules :=
70endif
71