blob: b40bdf8c8ae96cf8d7a10d3aea946e7a66472edd [file] [log] [blame]
Andreas Gampe5019faa2014-08-19 16:57:38 -07001# Build the unit tests.
2LOCAL_PATH := $(call my-dir)
3include $(CLEAR_VARS)
4
5# Target unit test.
6
7include $(CLEAR_VARS)
8LOCAL_MODULE := JniInvocation_test
Andreas Gampeb05d3502014-08-25 14:58:30 -07009LOCAL_CLANG := true
Andreas Gampe5019faa2014-08-19 16:57:38 -070010LOCAL_SRC_FILES := JniInvocation_test.cpp
Ningsheng Jiana75fb2a2014-09-17 13:34:09 +080011LOCAL_SHARED_LIBRARIES := libnativehelper
Andreas Gampe5019faa2014-08-19 16:57:38 -070012include $(BUILD_NATIVE_TEST)
13
14# Host unit test.
15
16include $(CLEAR_VARS)
17LOCAL_MODULE := JniInvocation_test
Andreas Gampeb05d3502014-08-25 14:58:30 -070018LOCAL_CLANG := true
Andreas Gampe5019faa2014-08-19 16:57:38 -070019LOCAL_SRC_FILES := JniInvocation_test.cpp
Ningsheng Jiana75fb2a2014-09-17 13:34:09 +080020LOCAL_SHARED_LIBRARIES := libnativehelper
Andreas Gampe5019faa2014-08-19 16:57:38 -070021include $(BUILD_HOST_NATIVE_TEST)