1 # Copyright (C) 2010 The Android Open Source Project 2 # 3 # Licensed under the Apache License, Version 2.0 (the "License"); 4 # you may not use this file except in compliance with the License. 5 # You may obtain a copy of the License at 6 # 7 # http://www.apache.org/licenses/LICENSE-2.0 8 # 9 # Unless required by applicable law or agreed to in writing, software 10 # distributed under the License is distributed on an "AS IS" BASIS, 11 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 # See the License for the specific language governing permissions and 13 # limitations under the License. 14 # 15 16 $(call check-defined-LOCAL_MODULE,$(LOCAL_BUILD_SCRIPT)) 17 $(call check-LOCAL_MODULE,$(LOCAL_MAKEFILE)) 18 19 # This file is used to record the LOCAL_XXX definitions of a given 20 # module. It is included by BUILD_STATIC_LIBRARY, BUILD_SHARED_LIBRARY 21 # and others. 22 # 23 LOCAL_MODULE_CLASS := $(strip $(LOCAL_MODULE_CLASS)) 24 ifndef LOCAL_MODULE_CLASS 25 $(call __ndk_info,$(LOCAL_MAKEFILE):$(LOCAL_MODULE): LOCAL_MODULE_CLASS definition is missing !) 26 $(call __ndk_error,Aborting) 27 endif 28 29 $(if $(call module-class-check,$(LOCAL_MODULE_CLASS)),,\ 30 $(call __ndk_info,$(LOCAL_MAKEFILE):$(LOCAL_MODULE): Unknown LOCAL_MODULE_CLASS value: $(LOCAL_MODULE_CLASS))\ 31 $(call __ndk_error,Aborting)\ 32 ) 33 34 $(call module-add,$(LOCAL_MODULE)) 35