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
17include $(CLEAR_VARS)
18LOCAL_MULTILIB := both
19LOCAL_MODULE := $(bionic_tests_module)
20LOCAL_MODULE_PATH_32 := $($(TARGET_2ND_ARCH_VAR_PREFIX)TARGET_OUT_DATA_NATIVE_TESTS)/bionic-loader-test-libs/prebuilt-elf-files
21LOCAL_MODULE_PATH_64 := $(TARGET_OUT_DATA_NATIVE_TESTS)/bionic-loader-test-libs/prebuilt-elf-files
22LOCAL_MODULE_CLASS := EXECUTABLES
23
24LOCAL_SRC_FILES_arm := prebuilt-elf-files/arm/$(bionic_tests_module)
25LOCAL_SRC_FILES_arm64 := prebuilt-elf-files/arm64/$(bionic_tests_module)
26LOCAL_SRC_FILES_x86 := prebuilt-elf-files/x86/$(bionic_tests_module)
27LOCAL_SRC_FILES_x86_64 := prebuilt-elf-files/x86_64/$(bionic_tests_module)
28LOCAL_SRC_FILES_mips := prebuilt-elf-files/mips/$(bionic_tests_module)
29LOCAL_SRC_FILES_mips64 := prebuilt-elf-files/mips64/$(bionic_tests_module)
30include $(BUILD_PREBUILT)
31bionic-loader-test-libs-target: $(LOCAL_MODULE)
32