blob: e30d50a2e3c80ecbcbdca29f37ac87cb13960dd8 [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
Yohei Yukawaba35bb82014-10-23 17:58:00 +090015# Host build is never supported in unbundled (NDK/tapas) build
16ifeq (,$(TARGET_BUILD_APPS))
17
Ken Wakasaed2781c2014-04-03 13:07:10 +090018# HACK: Temporarily disable host tool build on Mac until the build system is ready for C++11.
19LATINIME_HOST_OSNAME := $(shell uname -s)
20ifneq ($(LATINIME_HOST_OSNAME), Darwin) # TODO: Remove this
21
Yohei Yukawac72652c2014-04-02 01:23:07 +090022LOCAL_PATH := $(call my-dir)
23
24######################################
25include $(CLEAR_VARS)
26
27include $(LOCAL_PATH)/NativeFileList.mk
28
29#################### Host library for unit test
30# TODO: Remove -std=c++11 once it is set by default on host build.
31LATIN_IME_SRC_DIR := src
Yohei Yukawa5c4bec32014-10-23 18:52:50 +090032LOCAL_ADDRESS_SANITIZER := true
Yohei Yukawac72652c2014-04-02 01:23:07 +090033LOCAL_CFLAGS += -std=c++11 -Wno-unused-parameter -Wno-unused-function
34LOCAL_CLANG := true
Yohei Yukawa5c4bec32014-10-23 18:52:50 +090035LOCAL_CXX_STL := libc++
Yohei Yukawac72652c2014-04-02 01:23:07 +090036LOCAL_C_INCLUDES += $(LOCAL_PATH)/$(LATIN_IME_SRC_DIR)
Yohei Yukawac72652c2014-04-02 01:23:07 +090037LOCAL_MODULE := liblatinime_host_static_for_unittests
38LOCAL_MODULE_TAGS := optional
Yohei Yukawac72652c2014-04-02 01:23:07 +090039LOCAL_SRC_FILES := $(addprefix $(LATIN_IME_SRC_DIR)/, $(LATIN_IME_CORE_SRC_FILES))
40include $(BUILD_HOST_STATIC_LIBRARY)
41
42#################### Host native tests
43include $(CLEAR_VARS)
44LATIN_IME_TEST_SRC_DIR := tests
Yohei Yukawa5c4bec32014-10-23 18:52:50 +090045LOCAL_ADDRESS_SANITIZER := true
Yohei Yukawac72652c2014-04-02 01:23:07 +090046# TODO: Remove -std=c++11 once it is set by default on host build.
47LOCAL_CFLAGS += -std=c++11 -Wno-unused-parameter -Wno-unused-function
48LOCAL_CLANG := true
Yohei Yukawa5c4bec32014-10-23 18:52:50 +090049LOCAL_CXX_STL := libc++
Yohei Yukawac72652c2014-04-02 01:23:07 +090050LOCAL_C_INCLUDES += $(LOCAL_PATH)/$(LATIN_IME_SRC_DIR)
Yohei Yukawac72652c2014-04-02 01:23:07 +090051LOCAL_MODULE := liblatinime_host_unittests
52LOCAL_MODULE_TAGS := tests
Yohei Yukawac72652c2014-04-02 01:23:07 +090053LOCAL_SRC_FILES := $(addprefix $(LATIN_IME_TEST_SRC_DIR)/, $(LATIN_IME_CORE_TEST_FILES))
Yohei Yukawacc9b6042014-06-20 19:31:06 +090054LOCAL_STATIC_LIBRARIES += liblatinime_host_static_for_unittests
Yohei Yukawac72652c2014-04-02 01:23:07 +090055include $(BUILD_HOST_NATIVE_TEST)
56
Yohei Yukawaba35bb82014-10-23 17:58:00 +090057include $(LOCAL_PATH)/CleanupNativeFileList.mk
58
Ken Wakasaed2781c2014-04-03 13:07:10 +090059endif # Darwin - TODO: Remove this
60
Yohei Yukawaba35bb82014-10-23 17:58:00 +090061endif # TARGET_BUILD_APPS
62
Yohei Yukawac72652c2014-04-02 01:23:07 +090063#################### Clean up the tmp vars
Ken Wakasaed2781c2014-04-03 13:07:10 +090064LATINIME_HOST_OSNAME :=
Yohei Yukawac72652c2014-04-02 01:23:07 +090065LATIN_IME_SRC_DIR :=
66LATIN_IME_TEST_SRC_DIR :=