2012-05-28 08:30:18 +00:00
|
|
|
#
|
|
|
|
# Copyright (C) 2012 The Android Open Source Project
|
|
|
|
#
|
|
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
# you may not use this file except in compliance with the License.
|
|
|
|
# You may obtain a copy of the License at
|
|
|
|
#
|
|
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
#
|
|
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
# See the License for the specific language governing permissions and
|
|
|
|
# limitations under the License.
|
|
|
|
|
2014-03-07 03:37:40 +00:00
|
|
|
# HACK: Temporarily disable host tool build on Mac until the build system is ready for C++11.
|
|
|
|
LATINIME_HOST_OSNAME := $(shell uname -s)
|
|
|
|
ifneq ($(LATINIME_HOST_OSNAME), Darwin) # TODO: Remove this
|
|
|
|
|
2013-08-12 03:44:04 +00:00
|
|
|
LATINIME_DICTTOOL_AOSP_LOCAL_PATH := $(call my-dir)
|
|
|
|
LOCAL_PATH := $(LATINIME_DICTTOOL_AOSP_LOCAL_PATH)
|
|
|
|
LATINIME_HOST_NATIVE_LIBNAME := liblatinime-aosp-dicttool-host
|
|
|
|
include $(LOCAL_PATH)/NativeLib.mk
|
|
|
|
|
|
|
|
######################################
|
|
|
|
LOCAL_PATH := $(LATINIME_DICTTOOL_AOSP_LOCAL_PATH)
|
2012-05-28 08:30:18 +00:00
|
|
|
include $(CLEAR_VARS)
|
|
|
|
|
2013-08-12 03:44:04 +00:00
|
|
|
LATINIME_LOCAL_DIR := ../..
|
|
|
|
LATINIME_BASE_SOURCE_DIRECTORY := $(LATINIME_LOCAL_DIR)/java/src/com/android/inputmethod
|
2012-10-03 08:36:45 +00:00
|
|
|
LATINIME_ANNOTATIONS_SOURCE_DIRECTORY := $(LATINIME_BASE_SOURCE_DIRECTORY)/annotations
|
2014-03-13 08:37:16 +00:00
|
|
|
MAKEDICT_CORE_SOURCE_DIRECTORY := $(LATINIME_BASE_SOURCE_DIRECTORY)/latin/makedict
|
2013-12-12 06:08:10 +00:00
|
|
|
|
|
|
|
# Dependencies for Dicttool. Most of these files are needed by BinaryDictionary.java. Note that
|
|
|
|
# a significant part of the dependencies are mocked in the compat/ directory, with empty or
|
|
|
|
# nearly-empty implementations, for parts that we don't use in Dicttool.
|
2014-03-13 08:37:16 +00:00
|
|
|
LATINIME_SRCS_FOR_DICTTOOL := \
|
2014-03-14 13:50:20 +00:00
|
|
|
event/Combiner.java \
|
2014-03-13 08:37:16 +00:00
|
|
|
event/Event.java \
|
|
|
|
latin/BinaryDictionary.java \
|
|
|
|
latin/DicTraverseSession.java \
|
|
|
|
latin/Dictionary.java \
|
|
|
|
latin/InputPointers.java \
|
|
|
|
latin/LastComposedWord.java \
|
|
|
|
latin/LatinImeLogger.java \
|
|
|
|
latin/SuggestedWords.java \
|
|
|
|
latin/WordComposer.java \
|
|
|
|
latin/settings/NativeSuggestOptions.java \
|
|
|
|
latin/utils/BinaryDictionaryUtils.java \
|
|
|
|
latin/utils/ByteArrayDictBuffer.java \
|
|
|
|
latin/utils/CollectionUtils.java \
|
|
|
|
latin/utils/CombinedFormatUtils.java \
|
|
|
|
latin/utils/CoordinateUtils.java \
|
|
|
|
latin/utils/FileUtils.java \
|
|
|
|
latin/utils/JniUtils.java \
|
|
|
|
latin/utils/LocaleUtils.java \
|
|
|
|
latin/utils/ResizableIntArray.java \
|
|
|
|
latin/utils/StringUtils.java
|
|
|
|
USED_TARGETED_SRCS := $(addprefix $(LATINIME_BASE_SOURCE_DIRECTORY)/, \
|
|
|
|
$(LATINIME_SRCS_FOR_DICTTOOL))
|
2013-08-12 03:44:04 +00:00
|
|
|
|
|
|
|
DICTTOOL_ONDEVICE_TESTS_DIRECTORY := \
|
|
|
|
$(LATINIME_LOCAL_DIR)/tests/src/com/android/inputmethod/latin/makedict/
|
|
|
|
DICTTOOL_COMPAT_TESTS_DIRECTORY := compat
|
2012-08-03 08:05:41 +00:00
|
|
|
|
2012-11-29 10:09:01 +00:00
|
|
|
LOCAL_MAIN_SRC_FILES := $(call all-java-files-under, $(MAKEDICT_CORE_SOURCE_DIRECTORY))
|
|
|
|
LOCAL_TOOL_SRC_FILES := $(call all-java-files-under, src)
|
|
|
|
LOCAL_ANNOTATIONS_SRC_FILES := \
|
|
|
|
$(call all-java-files-under, $(LATINIME_ANNOTATIONS_SOURCE_DIRECTORY))
|
2013-08-12 03:44:04 +00:00
|
|
|
|
2012-08-03 08:05:41 +00:00
|
|
|
LOCAL_SRC_FILES := $(LOCAL_TOOL_SRC_FILES) \
|
|
|
|
$(filter-out $(addprefix %/, $(notdir $(LOCAL_TOOL_SRC_FILES))), $(LOCAL_MAIN_SRC_FILES)) \
|
2012-10-03 08:36:45 +00:00
|
|
|
$(LOCAL_ANNOTATIONS_SRC_FILES) \
|
2014-03-13 08:37:16 +00:00
|
|
|
$(LATINIME_BASE_SOURCE_DIRECTORY)/latin/Constants.java \
|
2013-06-20 06:41:22 +00:00
|
|
|
$(call all-java-files-under, tests) \
|
|
|
|
$(call all-java-files-under, $(DICTTOOL_ONDEVICE_TESTS_DIRECTORY)) \
|
|
|
|
$(call all-java-files-under, $(DICTTOOL_COMPAT_TESTS_DIRECTORY)) \
|
2014-03-13 08:37:16 +00:00
|
|
|
$(USED_TARGETED_SRCS)
|
2012-09-10 03:56:10 +00:00
|
|
|
|
2012-08-27 05:51:57 +00:00
|
|
|
LOCAL_JAVA_LIBRARIES := junit
|
2013-08-12 03:44:04 +00:00
|
|
|
LOCAL_ADDITIONAL_DEPENDENCIES := $(LATINIME_HOST_NATIVE_LIBNAME)
|
2012-05-28 08:30:18 +00:00
|
|
|
LOCAL_JAR_MANIFEST := etc/manifest.txt
|
2012-08-08 08:15:58 +00:00
|
|
|
LOCAL_MODULE := dicttool_aosp
|
2014-03-07 03:37:40 +00:00
|
|
|
LOCAL_IS_HOST_MODULE := true
|
2012-05-28 08:30:18 +00:00
|
|
|
|
|
|
|
include $(BUILD_HOST_JAVA_LIBRARY)
|
|
|
|
include $(LOCAL_PATH)/etc/Android.mk
|
2013-08-12 03:44:04 +00:00
|
|
|
|
2014-03-07 03:37:40 +00:00
|
|
|
endif # Darwin - TODO: Remove this
|
|
|
|
|
2013-08-12 03:44:04 +00:00
|
|
|
# Clear our private variables
|
|
|
|
LATINIME_DICTTOOL_AOSP_LOCAL_PATH :=
|
|
|
|
LATINIME_LOCAL_DIR :=
|
2014-03-07 03:37:40 +00:00
|
|
|
LATINIME_HOST_OSNAME :=
|