blob: e35758df1c5352a61508270675025b984acc6c6e [file] [log] [blame]
Carl Shapiro008e4122011-06-23 17:27:46 -07001#
2# Copyright (C) 2011 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
Brian Carlstrom8ecd08c2011-07-27 17:50:51 -070017ART_HOST_TEST_EXECUTABLES :=
18ART_TARGET_TEST_EXECUTABLES :=
19
Brian Carlstrom07d579f2011-07-27 13:31:51 -070020# $(1): target or host
21# $(2): file name with .cc or .cc.arm extension
22define build-art-test
23 include $(CLEAR_VARS)
24 ifeq ($(1),target)
25 include external/stlport/libstlport.mk
26 endif
27 LOCAL_CPP_EXTENSION := $(ART_CPP_EXTENSION)
28 LOCAL_MODULE := $(notdir $(basename $(2:%.arm=%)))
29 LOCAL_MODULE_TAGS := tests
30 LOCAL_SRC_FILES := $(2)
Brian Carlstromb0460ea2011-07-29 10:08:05 -070031 LOCAL_C_INCLUDES += $(ART_C_INCLUDES)
Brian Carlstrom8ecd08c2011-07-27 17:50:51 -070032 LOCAL_SHARED_LIBRARIES := libarttest libartd
Brian Carlstrom07d579f2011-07-27 13:31:51 -070033 ifeq ($(1),target)
Brian Carlstrom86927212011-09-15 11:31:11 -070034 LOCAL_CFLAGS := $(ART_TARGET_CFLAGS) $(ART_TARGET_DEBUG_CFLAGS)
Elliott Hughes18c07532011-08-18 15:50:51 -070035 LOCAL_SHARED_LIBRARIES += libdl libicuuc libicui18n libnativehelper libstlport libz
Brian Carlstrom07d579f2011-07-27 13:31:51 -070036 LOCAL_STATIC_LIBRARIES := libgtest libgtest_main
37 else
Brian Carlstrom86927212011-09-15 11:31:11 -070038 LOCAL_CFLAGS := $(ART_HOST_CFLAGS) $(ART_HOST_DEBUG_CFLAGS)
Elliott Hughes18c07532011-08-18 15:50:51 -070039 LOCAL_SHARED_LIBRARIES += libicuuc-host libicui18n-host libnativehelper libz-host
Brian Carlstrombc512352011-09-16 15:57:22 -070040 LOCAL_WHOLE_STATIC_LIBRARIES := libgtest_main_host
Brian Carlstrom07d579f2011-07-27 13:31:51 -070041 endif
42 ifeq ($(1),target)
43 include $(BUILD_EXECUTABLE)
44 else
45 include $(BUILD_HOST_EXECUTABLE)
46 endif
Brian Carlstrom8ecd08c2011-07-27 17:50:51 -070047 ifeq ($(1),target)
48 ART_TARGET_TEST_EXECUTABLES += $(TARGET_OUT_EXECUTABLES)/$$(LOCAL_MODULE)
49 else
50 ART_HOST_TEST_EXECUTABLES += $(HOST_OUT_EXECUTABLES)/$$(LOCAL_MODULE)
51 endif
Brian Carlstrom07d579f2011-07-27 13:31:51 -070052endef
Carl Shapiro008e4122011-06-23 17:27:46 -070053
Brian Carlstrom4b620ff2011-09-11 01:11:01 -070054ifeq ($(ART_BUILD_TARGET),true)
55 $(foreach file,$(TEST_TARGET_SRC_FILES), $(eval $(call build-art-test,target,$(file))))
56endif
57ifeq ($(ART_BUILD_HOST),true)
Brian Carlstrom07d579f2011-07-27 13:31:51 -070058 $(foreach file,$(TEST_HOST_SRC_FILES), $(eval $(call build-art-test,host,$(file))))
59endif