• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1#
2# Copyright (C) 2019 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############################################################
18# Internal build rules for misc prebuilt modules that don't need additional processing
19############################################################
20
21prebuilt_module_classes := SCRIPT ETC DATA RENDERSCRIPT_BITCODE
22ifeq ($(filter $(prebuilt_module_classes),$(LOCAL_MODULE_CLASS)),)
23$(call pretty-error,misc_prebuilt_internal.mk is for $(prebuilt_module_classes) modules only)
24endif
25
26include $(BUILD_SYSTEM)/base_rules.mk
27
28ifneq ($(filter init%rc,$(notdir $(LOCAL_INSTALLED_MODULE)))$(filter %/etc/init,$(dir $(LOCAL_INSTALLED_MODULE))),)
29  $(eval $(call copy-init-script-file-checked,$(my_prebuilt_src_file),$(LOCAL_BUILT_MODULE)))
30else ifneq ($(LOCAL_PREBUILT_STRIP_COMMENTS),)
31$(LOCAL_BUILT_MODULE) : $(my_prebuilt_src_file)
32	$(transform-prebuilt-to-target-strip-comments)
33else
34$(LOCAL_BUILT_MODULE) : $(my_prebuilt_src_file)
35	$(transform-prebuilt-to-target)
36endif
37
38built_module := $(LOCAL_BUILT_MODULE)
39