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