Home | History | Annotate | Download | only in android
      1 #
      2 # Copyright (C) 2016 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 include $(CLEAR_VARS)
     18 
     19 module_name := kselftest_$(subst /,_,$(module_prebuilt))
     20 module_stem := $(notdir $(module_src_files))
     21 module_path := $(dir $(module_src_files))
     22 
     23 LOCAL_MODULE := $(module_name)
     24 LOCAL_INSTALLED_MODULE_STEM := $(module_stem)
     25 LOCAL_PREBUILT_MODULE_FILE := $(LOCAL_PATH)/tools/testing/selftests/$(module_src_files)
     26 LOCAL_MODULE_RELATIVE_PATH := linux-kselftest/$(module_path)
     27 LOCAL_MODULE_CLASS := NATIVE_TESTS
     28 LOCAL_MULTILIB := both
     29 
     30 include $(BUILD_PREBUILT)
     31 
     32 module_name :=
     33 module_stem :=
     34 module_path :=
     35