Home | History | Annotate | Download | only in jni
      1 # 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 
     15 # Host build is never supported in unbundled (NDK/tapas) build
     16 ifeq (,$(TARGET_BUILD_APPS))
     17 
     18 # HACK: Temporarily disable host tool build on Mac until the build system is ready for C++11.
     19 LATINIME_HOST_OSNAME := $(shell uname -s)
     20 ifneq ($(LATINIME_HOST_OSNAME), Darwin) # TODO: Remove this
     21 
     22 LOCAL_PATH := $(call my-dir)
     23 
     24 ######################################
     25 include $(CLEAR_VARS)
     26 
     27 include $(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.
     31 LATIN_IME_SRC_DIR := src
     32 LOCAL_ADDRESS_SANITIZER := true
     33 LOCAL_CFLAGS += -std=c++11 -Wno-unused-parameter -Wno-unused-function
     34 LOCAL_CLANG := true
     35 LOCAL_CXX_STL := libc++
     36 LOCAL_C_INCLUDES += $(LOCAL_PATH)/$(LATIN_IME_SRC_DIR)
     37 LOCAL_MODULE := liblatinime_host_static_for_unittests
     38 LOCAL_MODULE_TAGS := optional
     39 LOCAL_SRC_FILES := $(addprefix $(LATIN_IME_SRC_DIR)/, $(LATIN_IME_CORE_SRC_FILES))
     40 include $(BUILD_HOST_STATIC_LIBRARY)
     41 
     42 #################### Host native tests
     43 include $(CLEAR_VARS)
     44 LATIN_IME_TEST_SRC_DIR := tests
     45 LOCAL_ADDRESS_SANITIZER := true
     46 # TODO: Remove -std=c++11 once it is set by default on host build.
     47 LOCAL_CFLAGS += -std=c++11 -Wno-unused-parameter -Wno-unused-function
     48 LOCAL_CLANG := true
     49 LOCAL_CXX_STL := libc++
     50 LOCAL_C_INCLUDES += $(LOCAL_PATH)/$(LATIN_IME_SRC_DIR)
     51 LOCAL_MODULE := liblatinime_host_unittests
     52 LOCAL_MODULE_TAGS := tests
     53 LOCAL_SRC_FILES := $(addprefix $(LATIN_IME_TEST_SRC_DIR)/, $(LATIN_IME_CORE_TEST_FILES))
     54 LOCAL_STATIC_LIBRARIES += liblatinime_host_static_for_unittests
     55 include $(BUILD_HOST_NATIVE_TEST)
     56 
     57 include $(LOCAL_PATH)/CleanupNativeFileList.mk
     58 
     59 endif # Darwin - TODO: Remove this
     60 
     61 endif # TARGET_BUILD_APPS
     62 
     63 #################### Clean up the tmp vars
     64 LATINIME_HOST_OSNAME :=
     65 LATIN_IME_SRC_DIR :=
     66 LATIN_IME_TEST_SRC_DIR :=
     67