blob: 9e59283b672daed89b1ad9cd34307d6b5bc6010e [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
Ken Wakasaed2781c2014-04-03 13:07:10 +090015# HACK: Temporarily disable host tool build on Mac until the build system is ready for C++11.
16LATINIME_HOST_OSNAME := $(shell uname -s)
17ifneq ($(LATINIME_HOST_OSNAME), Darwin) # TODO: Remove this
18
Yohei Yukawac72652c2014-04-02 01:23:07 +090019LOCAL_PATH := $(call my-dir)
20
21######################################
22include $(CLEAR_VARS)
23
24include $(LOCAL_PATH)/NativeFileList.mk
25
26#################### Host library for unit test
27# TODO: Remove -std=c++11 once it is set by default on host build.
28LATIN_IME_SRC_DIR := src
Yohei Yukawaaf2673f2014-10-22 19:00:48 +090029LOCAL_ADDRESS_SANITIZER := true
Yohei Yukawac72652c2014-04-02 01:23:07 +090030LOCAL_CFLAGS += -std=c++11 -Wno-unused-parameter -Wno-unused-function
31LOCAL_CLANG := true
Yohei Yukawaaf2673f2014-10-22 19:00:48 +090032LOCAL_CXX_STL := libc++
Yohei Yukawac72652c2014-04-02 01:23:07 +090033LOCAL_C_INCLUDES += $(LOCAL_PATH)/$(LATIN_IME_SRC_DIR)
Yohei Yukawac72652c2014-04-02 01:23:07 +090034LOCAL_MODULE := liblatinime_host_static_for_unittests
35LOCAL_MODULE_TAGS := optional
Yohei Yukawac72652c2014-04-02 01:23:07 +090036LOCAL_SRC_FILES := $(addprefix $(LATIN_IME_SRC_DIR)/, $(LATIN_IME_CORE_SRC_FILES))
37include $(BUILD_HOST_STATIC_LIBRARY)
38
39#################### Host native tests
40include $(CLEAR_VARS)
41LATIN_IME_TEST_SRC_DIR := tests
42# TODO: Remove -std=c++11 once it is set by default on host build.
Yohei Yukawaaf2673f2014-10-22 19:00:48 +090043LOCAL_ADDRESS_SANITIZER := true
Yohei Yukawac72652c2014-04-02 01:23:07 +090044LOCAL_CFLAGS += -std=c++11 -Wno-unused-parameter -Wno-unused-function
45LOCAL_CLANG := true
Yohei Yukawaaf2673f2014-10-22 19:00:48 +090046LOCAL_CXX_STL := libc++
Yohei Yukawac72652c2014-04-02 01:23:07 +090047LOCAL_C_INCLUDES += $(LOCAL_PATH)/$(LATIN_IME_SRC_DIR)
Yohei Yukawac72652c2014-04-02 01:23:07 +090048LOCAL_MODULE := liblatinime_host_unittests
49LOCAL_MODULE_TAGS := tests
Yohei Yukawac72652c2014-04-02 01:23:07 +090050LOCAL_SRC_FILES := $(addprefix $(LATIN_IME_TEST_SRC_DIR)/, $(LATIN_IME_CORE_TEST_FILES))
Yohei Yukawacc9b6042014-06-20 19:31:06 +090051LOCAL_STATIC_LIBRARIES += liblatinime_host_static_for_unittests
Yohei Yukawac72652c2014-04-02 01:23:07 +090052include $(BUILD_HOST_NATIVE_TEST)
53
Ken Wakasaed2781c2014-04-03 13:07:10 +090054endif # Darwin - TODO: Remove this
55
Yohei Yukawac72652c2014-04-02 01:23:07 +090056#################### Clean up the tmp vars
Ken Wakasaed2781c2014-04-03 13:07:10 +090057LATINIME_HOST_OSNAME :=
Yohei Yukawac72652c2014-04-02 01:23:07 +090058LATIN_IME_SRC_DIR :=
59LATIN_IME_TEST_SRC_DIR :=
60include $(LOCAL_PATH)/CleanupNativeFileList.mk