blob: 828edce61df9d43f467c5355fc7137e6bae6312e [file] [log] [blame]
Yohei Yukawac72652c2014-04-02 01:23:07 +09001# Copyright (C) 2014 The Android Open Source Project
2#
3# Licensed under the Apache License, Version 2.0 (the "License");
4# you may not use this file except in compliance with the License.
5# You may obtain a copy of the License at
6#
7# http://www.apache.org/licenses/LICENSE-2.0
8#
9# Unless required by applicable law or agreed to in writing, software
10# distributed under the License is distributed on an "AS IS" BASIS,
11# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12# See the License for the specific language governing permissions and
13# limitations under the License.
14
15LOCAL_PATH := $(call my-dir)
16
17######################################
18include $(CLEAR_VARS)
19
20include $(LOCAL_PATH)/NativeFileList.mk
21
22#################### Host library for unit test
23# TODO: Remove -std=c++11 once it is set by default on host build.
24LATIN_IME_SRC_DIR := src
25LOCAL_CFLAGS += -std=c++11 -Wno-unused-parameter -Wno-unused-function
26LOCAL_CLANG := true
27LOCAL_C_INCLUDES += $(LOCAL_PATH)/$(LATIN_IME_SRC_DIR)
28LOCAL_IS_HOST_MODULE := true
29LOCAL_MODULE := liblatinime_host_static_for_unittests
30LOCAL_MODULE_TAGS := optional
31LOCAL_NDK_STL_VARIANT := c++_static
32LOCAL_SRC_FILES := $(addprefix $(LATIN_IME_SRC_DIR)/, $(LATIN_IME_CORE_SRC_FILES))
33include $(BUILD_HOST_STATIC_LIBRARY)
34
35#################### Host native tests
36include $(CLEAR_VARS)
37LATIN_IME_TEST_SRC_DIR := tests
38# TODO: Remove -std=c++11 once it is set by default on host build.
39LOCAL_CFLAGS += -std=c++11 -Wno-unused-parameter -Wno-unused-function
40LOCAL_CLANG := true
41LOCAL_C_INCLUDES += $(LOCAL_PATH)/$(LATIN_IME_SRC_DIR)
42LOCAL_IS_HOST_MODULE := true
43LOCAL_MODULE := liblatinime_host_unittests
44LOCAL_MODULE_TAGS := tests
45LOCAL_NDK_STL_VARIANT := c++_static
46LOCAL_SRC_FILES := $(addprefix $(LATIN_IME_TEST_SRC_DIR)/, $(LATIN_IME_CORE_TEST_FILES))
47LOCAL_STATIC_LIBRARIES += liblatinime_host_static_for_unittests libgtest_host libgtest_main_host
48include $(BUILD_HOST_NATIVE_TEST)
49
50#################### Clean up the tmp vars
51LATIN_IME_SRC_DIR :=
52LATIN_IME_TEST_SRC_DIR :=
53include $(LOCAL_PATH)/CleanupNativeFileList.mk