blob: 92443beef5027fda7ac59167cef0c31ce38e07b7 [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
Brian Carlstrom0796af02011-10-12 14:31:45 -070021# $(2): file name
Brian Carlstrom07d579f2011-07-27 13:31:51 -070022define build-art-test
Brian Carlstrom0796af02011-10-12 14:31:45 -070023 ifneq ($(1),target)
24 ifneq ($(1),host)
25 $$(error expected target or host for argument 1, received $(1))
26 endif
27 endif
28
29 art_target_or_host := $(1)
30 art_gtest_filename := $(2)
31
Brian Carlstrom07d579f2011-07-27 13:31:51 -070032 include $(CLEAR_VARS)
Brian Carlstrom0796af02011-10-12 14:31:45 -070033 ifeq ($$(art_target_or_host),target)
Brian Carlstrom07d579f2011-07-27 13:31:51 -070034 include external/stlport/libstlport.mk
35 endif
Brian Carlstrom0796af02011-10-12 14:31:45 -070036
Brian Carlstrom07d579f2011-07-27 13:31:51 -070037 LOCAL_CPP_EXTENSION := $(ART_CPP_EXTENSION)
Brian Carlstrom0796af02011-10-12 14:31:45 -070038 LOCAL_MODULE := $(notdir $(basename $$(art_gtest_filename)))
Brian Carlstrom07d579f2011-07-27 13:31:51 -070039 LOCAL_MODULE_TAGS := tests
Brian Carlstrom0796af02011-10-12 14:31:45 -070040 LOCAL_SRC_FILES := $$(art_gtest_filename)
Brian Carlstromb0460ea2011-07-29 10:08:05 -070041 LOCAL_C_INCLUDES += $(ART_C_INCLUDES)
Brian Carlstrom8ecd08c2011-07-27 17:50:51 -070042 LOCAL_SHARED_LIBRARIES := libarttest libartd
Brian Carlstrom0796af02011-10-12 14:31:45 -070043
44 ifeq ($$(art_target_or_host),target)
Brian Carlstrom86927212011-09-15 11:31:11 -070045 LOCAL_CFLAGS := $(ART_TARGET_CFLAGS) $(ART_TARGET_DEBUG_CFLAGS)
Elliott Hughes18c07532011-08-18 15:50:51 -070046 LOCAL_SHARED_LIBRARIES += libdl libicuuc libicui18n libnativehelper libstlport libz
Brian Carlstrom07d579f2011-07-27 13:31:51 -070047 LOCAL_STATIC_LIBRARIES := libgtest libgtest_main
Brian Carlstrom0796af02011-10-12 14:31:45 -070048 include $(BUILD_EXECUTABLE)
49 ART_TARGET_TEST_EXECUTABLES += $(TARGET_OUT_EXECUTABLES)/$$(LOCAL_MODULE)
50 else # host
Brian Carlstrom86927212011-09-15 11:31:11 -070051 LOCAL_CFLAGS := $(ART_HOST_CFLAGS) $(ART_HOST_DEBUG_CFLAGS)
Elliott Hughes18c07532011-08-18 15:50:51 -070052 LOCAL_SHARED_LIBRARIES += libicuuc-host libicui18n-host libnativehelper libz-host
Brian Carlstrombc512352011-09-16 15:57:22 -070053 LOCAL_WHOLE_STATIC_LIBRARIES := libgtest_main_host
Brian Carlstrom07d579f2011-07-27 13:31:51 -070054 include $(BUILD_HOST_EXECUTABLE)
Brian Carlstrom8ecd08c2011-07-27 17:50:51 -070055 ART_HOST_TEST_EXECUTABLES += $(HOST_OUT_EXECUTABLES)/$$(LOCAL_MODULE)
56 endif
Brian Carlstrom0796af02011-10-12 14:31:45 -070057
Brian Carlstrom07d579f2011-07-27 13:31:51 -070058endef
Carl Shapiro008e4122011-06-23 17:27:46 -070059
Brian Carlstrom4b620ff2011-09-11 01:11:01 -070060ifeq ($(ART_BUILD_TARGET),true)
61 $(foreach file,$(TEST_TARGET_SRC_FILES), $(eval $(call build-art-test,target,$(file))))
62endif
63ifeq ($(ART_BUILD_HOST),true)
Brian Carlstrom07d579f2011-07-27 13:31:51 -070064 $(foreach file,$(TEST_HOST_SRC_FILES), $(eval $(call build-art-test,host,$(file))))
65endif