Home | History | Annotate | Download | only in test
      1 #
      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 
     17 LOCAL_PATH := $(call my-dir)
     18 
     19 include art/build/Android.common_build.mk
     20 
     21 LIBARTTEST_COMMON_SRC_FILES := \
     22   common/runtime_state.cc \
     23   common/stack_inspect.cc \
     24   004-JniTest/jni_test.cc \
     25   004-SignalTest/signaltest.cc \
     26   004-ReferenceMap/stack_walk_refmap_jni.cc \
     27   004-StackWalk/stack_walk_jni.cc \
     28   004-UnsafeTest/unsafe_test.cc \
     29   044-proxy/native_proxy.cc \
     30   051-thread/thread_test.cc \
     31   117-nopatchoat/nopatchoat.cc \
     32   1337-gc-coverage/gc_coverage.cc \
     33   136-daemon-jni-shutdown/daemon_jni_shutdown.cc \
     34   137-cfi/cfi.cc \
     35   139-register-natives/regnative.cc \
     36   141-class-unload/jni_unload.cc \
     37   148-multithread-gc-annotations/gc_coverage.cc \
     38   454-get-vreg/get_vreg_jni.cc \
     39   457-regs/regs_jni.cc \
     40   461-get-reference-vreg/get_reference_vreg_jni.cc \
     41   466-get-live-vreg/get_live_vreg_jni.cc \
     42   497-inlining-and-class-loader/clear_dex_cache.cc \
     43   543-env-long-ref/env_long_ref.cc \
     44   566-polymorphic-inlining/polymorphic_inline.cc \
     45   570-checker-osr/osr.cc \
     46   595-profile-saving/profile-saving.cc \
     47   597-deopt-new-string/deopt.cc
     48 
     49 ART_TARGET_LIBARTTEST_$(ART_PHONY_TEST_TARGET_SUFFIX) += $(ART_TARGET_TEST_OUT)/$(TARGET_ARCH)/libarttest.so
     50 ART_TARGET_LIBARTTEST_$(ART_PHONY_TEST_TARGET_SUFFIX) += $(ART_TARGET_TEST_OUT)/$(TARGET_ARCH)/libarttestd.so
     51 ifdef TARGET_2ND_ARCH
     52   ART_TARGET_LIBARTTEST_$(2ND_ART_PHONY_TEST_TARGET_SUFFIX) += $(ART_TARGET_TEST_OUT)/$(TARGET_2ND_ARCH)/libarttest.so
     53   ART_TARGET_LIBARTTEST_$(2ND_ART_PHONY_TEST_TARGET_SUFFIX) += $(ART_TARGET_TEST_OUT)/$(TARGET_2ND_ARCH)/libarttestd.so
     54 endif
     55 
     56 # $(1): target or host
     57 define build-libarttest
     58   ifneq ($(1),target)
     59     ifneq ($(1),host)
     60       $$(error expected target or host for argument 1, received $(1))
     61     endif
     62   endif
     63   ifneq ($(2),debug)
     64     ifneq ($(2),)
     65       $$(error d or empty for argument 2, received $(2))
     66     endif
     67     suffix := d
     68   else
     69     suffix :=
     70   endif
     71 
     72   art_target_or_host := $(1)
     73 
     74   include $(CLEAR_VARS)
     75   LOCAL_CPP_EXTENSION := $(ART_CPP_EXTENSION)
     76   LOCAL_MODULE := libarttest$$(suffix)
     77   ifeq ($$(art_target_or_host),target)
     78     LOCAL_MODULE_TAGS := tests
     79   endif
     80   LOCAL_SRC_FILES := $(LIBARTTEST_COMMON_SRC_FILES)
     81   LOCAL_SHARED_LIBRARIES += libart$$(suffix) libbacktrace libnativehelper
     82   LOCAL_C_INCLUDES += $(ART_C_INCLUDES) art/runtime
     83   LOCAL_ADDITIONAL_DEPENDENCIES := art/build/Android.common_build.mk
     84   LOCAL_ADDITIONAL_DEPENDENCIES += $(LOCAL_PATH)/Android.libarttest.mk
     85   ifeq ($$(art_target_or_host),target)
     86     $(call set-target-local-clang-vars)
     87     $(call set-target-local-cflags-vars,debug)
     88     LOCAL_SHARED_LIBRARIES += libdl
     89     LOCAL_MULTILIB := both
     90     LOCAL_MODULE_PATH_32 := $(ART_TARGET_TEST_OUT)/$(ART_TARGET_ARCH_32)
     91     LOCAL_MODULE_PATH_64 := $(ART_TARGET_TEST_OUT)/$(ART_TARGET_ARCH_64)
     92     LOCAL_MODULE_TARGET_ARCH := $(ART_SUPPORTED_ARCH)
     93     include $(BUILD_SHARED_LIBRARY)
     94   else # host
     95     LOCAL_CLANG := $(ART_HOST_CLANG)
     96     LOCAL_CFLAGS := $(ART_HOST_CFLAGS)
     97     ifeq ($$(suffix),d)
     98       LOCAL_CFLAGS += $(ART_HOST_DEBUG_CFLAGS)
     99     else
    100       LOCAL_CFLAGS += $(ART_HOST_NON_DEBUG_CFLAGS)
    101     endif
    102     LOCAL_ASFLAGS := $(ART_HOST_ASFLAGS)
    103     LOCAL_LDLIBS := $(ART_HOST_LDLIBS) -ldl -lpthread
    104     LOCAL_IS_HOST_MODULE := true
    105     LOCAL_MULTILIB := both
    106     include $(BUILD_HOST_SHARED_LIBRARY)
    107   endif
    108 
    109   # Clear locally used variables.
    110   art_target_or_host :=
    111   suffix :=
    112 endef
    113 
    114 ifeq ($(ART_BUILD_TARGET),true)
    115   $(eval $(call build-libarttest,target,))
    116   $(eval $(call build-libarttest,target,debug))
    117 endif
    118 ifeq ($(ART_BUILD_HOST),true)
    119   $(eval $(call build-libarttest,host,))
    120   $(eval $(call build-libarttest,host,debug))
    121 endif
    122 
    123 # Clear locally used variables.
    124 LOCAL_PATH :=
    125 LIBARTTEST_COMMON_SRC_FILES :=
    126