blob: d50656c3f20e4aff4c174afadb44712008ffcdad [file] [log] [blame]
Dimitry Ivanovff255812016-08-12 16:53:34 -07001#
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 := $(module)
20LOCAL_MODULE_PATH_32 := $($(TARGET_2ND_ARCH_VAR_PREFIX)TARGET_OUT_DATA_NATIVE_TESTS)/prebuilt-elf-files
21LOCAL_MODULE_PATH_64 := $(TARGET_OUT_DATA_NATIVE_TESTS)/prebuilt-elf-files
22LOCAL_MODULE_CLASS := EXECUTABLES
23
24LOCAL_SRC_FILES_arm := prebuilt-elf-files/arm/$(module)
25LOCAL_SRC_FILES_arm64 := prebuilt-elf-files/arm64/$(module)
26LOCAL_SRC_FILES_x86 := prebuilt-elf-files/x86/$(module)
27LOCAL_SRC_FILES_x86_64 := prebuilt-elf-files/x86_64/$(module)
28include $(BUILD_PREBUILT)