Dimitry Ivanov | ff25581 | 2016-08-12 16:53:34 -0700 | [diff] [blame] | 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 | LOCAL_MULTILIB := both |
Dimitry Ivanov | c9a9561 | 2016-08-15 10:27:47 -0700 | [diff] [blame] | 19 | LOCAL_MODULE := $(bionic_tests_module) |
Dimitry Ivanov | a36e59b | 2016-09-01 11:37:39 -0700 | [diff] [blame] | 20 | LOCAL_MODULE_PATH_32 := $($(TARGET_2ND_ARCH_VAR_PREFIX)TARGET_OUT_DATA_NATIVE_TESTS)/bionic-loader-test-libs/prebuilt-elf-files |
| 21 | LOCAL_MODULE_PATH_64 := $(TARGET_OUT_DATA_NATIVE_TESTS)/bionic-loader-test-libs/prebuilt-elf-files |
Dimitry Ivanov | ff25581 | 2016-08-12 16:53:34 -0700 | [diff] [blame] | 22 | LOCAL_MODULE_CLASS := EXECUTABLES |
| 23 | |
Dimitry Ivanov | c9a9561 | 2016-08-15 10:27:47 -0700 | [diff] [blame] | 24 | LOCAL_SRC_FILES_arm := prebuilt-elf-files/arm/$(bionic_tests_module) |
| 25 | LOCAL_SRC_FILES_arm64 := prebuilt-elf-files/arm64/$(bionic_tests_module) |
| 26 | LOCAL_SRC_FILES_x86 := prebuilt-elf-files/x86/$(bionic_tests_module) |
| 27 | LOCAL_SRC_FILES_x86_64 := prebuilt-elf-files/x86_64/$(bionic_tests_module) |
Nikola Veljkovic | 44a6544 | 2016-08-16 20:47:40 +0200 | [diff] [blame] | 28 | LOCAL_SRC_FILES_mips := prebuilt-elf-files/mips/$(bionic_tests_module) |
| 29 | LOCAL_SRC_FILES_mips64 := prebuilt-elf-files/mips64/$(bionic_tests_module) |
Dimitry Ivanov | ff25581 | 2016-08-12 16:53:34 -0700 | [diff] [blame] | 30 | include $(BUILD_PREBUILT) |
Dimitry Ivanov | a36e59b | 2016-09-01 11:37:39 -0700 | [diff] [blame] | 31 | bionic-loader-test-libs-target: $(LOCAL_MODULE) |
Dan Willemsen | 901055e | 2018-06-18 20:23:14 -0700 | [diff] [blame] | 32 | .PHONY: bionic-loader-test-libs-target |