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-07-29 17:46:38 +00:00
|
|
|
# Only build if it's explicitly requested, or running mm/mmm.
|
|
|
|
ifneq ($(ONE_SHOT_MAKEFILE)$(filter $(MAKECMDGOALS),dicttool_aosp),)
|
|
|
|
|
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)
|
2014-05-23 18:07:58 +00:00
|
|
|
ifeq ($(LATINIME_HOST_OSNAME), Darwin) # TODO: Remove this
|
|
|
|
$(warning dicttool_aosp is not supported on $(LATINIME_HOST_OSNAME))
|
|
|
|
else # TODO: Remove this
|
2014-03-07 03:37:40 +00:00
|
|
|
|
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 := ../..
|
2014-08-15 17:34:53 +00:00
|
|
|
LATINIME_BASE_SRC_DIR := $(LATINIME_LOCAL_DIR)/java/src/com/android/inputmethod
|
|
|
|
LATINIME_BASE_OVERRIDABLE_SRC_DIR := \
|
|
|
|
$(LATINIME_LOCAL_DIR)/java-overridable/src/com/android/inputmethod
|
|
|
|
MAKEDICT_CORE_SRC_DIR := $(LATINIME_BASE_SRC_DIR)/latin/makedict
|
|
|
|
LATINIME_TESTS_SRC_DIR := $(LATINIME_LOCAL_DIR)/tests/src/com/android/inputmethod/latin
|
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-27 10:11:12 +00:00
|
|
|
LATINIME_SRC_FILES_FOR_DICTTOOL := \
|
2014-03-13 08:37:16 +00:00
|
|
|
latin/BinaryDictionary.java \
|
|
|
|
latin/DicTraverseSession.java \
|
|
|
|
latin/Dictionary.java \
|
2014-09-29 01:52:18 +00:00
|
|
|
latin/NgramContext.java \
|
2014-03-13 08:37:16 +00:00
|
|
|
latin/SuggestedWords.java \
|
2014-07-08 07:36:06 +00:00
|
|
|
latin/settings/SettingsValuesForSuggestion.java \
|
2014-03-13 08:37:16 +00:00
|
|
|
latin/utils/BinaryDictionaryUtils.java \
|
|
|
|
latin/utils/CombinedFormatUtils.java \
|
2014-11-06 11:29:29 +00:00
|
|
|
latin/utils/JniUtils.java
|
2014-03-27 06:30:32 +00:00
|
|
|
|
2014-08-15 17:34:53 +00:00
|
|
|
LATINIME_OVERRIDABLE_SRC_FILES_FOR_DICTTOOL := \
|
|
|
|
latin/define/DebugFlags.java
|
|
|
|
|
2014-03-27 10:11:12 +00:00
|
|
|
LATINIME_TEST_SRC_FILES_FOR_DICTTOOL := \
|
2014-03-27 06:30:32 +00:00
|
|
|
utils/ByteArrayDictBuffer.java
|
|
|
|
|
2014-08-15 17:34:53 +00:00
|
|
|
USED_TARGETED_SRC_FILES := \
|
|
|
|
$(addprefix $(LATINIME_BASE_SRC_DIR)/, $(LATINIME_SRC_FILES_FOR_DICTTOOL)) \
|
|
|
|
$(addprefix $(LATINIME_BASE_OVERRIDABLE_SRC_DIR)/, \
|
|
|
|
$(LATINIME_OVERRIDABLE_SRC_FILES_FOR_DICTTOOL)) \
|
|
|
|
$(addprefix $(LATINIME_TESTS_SRC_DIR)/, $(LATINIME_TEST_SRC_FILES_FOR_DICTTOOL))
|
2013-08-12 03:44:04 +00:00
|
|
|
|
2014-08-15 17:34:53 +00:00
|
|
|
DICTTOOL_ONDEVICE_TESTS_DIR := \
|
2013-08-12 03:44:04 +00:00
|
|
|
$(LATINIME_LOCAL_DIR)/tests/src/com/android/inputmethod/latin/makedict/
|
2014-08-15 17:34:53 +00:00
|
|
|
DICTTOOL_COMPAT_TESTS_DIR := compat
|
2012-08-03 08:05:41 +00:00
|
|
|
|
2014-08-15 17:34:53 +00:00
|
|
|
LOCAL_MAIN_SRC_FILES := $(call all-java-files-under, $(MAKEDICT_CORE_SRC_DIR))
|
2012-11-29 10:09:01 +00:00
|
|
|
LOCAL_TOOL_SRC_FILES := $(call all-java-files-under, src)
|
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)) \
|
2014-10-22 12:29:46 +00:00
|
|
|
$(USED_TARGETED_SRC_FILES) \
|
|
|
|
$(call all-java-files-under, \
|
|
|
|
tests $(DICTTOOL_COMPAT_TESTS_DIR) $(DICTTOOL_ONDEVICE_TESTS_DIR))
|
2012-09-10 03:56:10 +00:00
|
|
|
|
2012-08-27 05:51:57 +00:00
|
|
|
LOCAL_JAVA_LIBRARIES := junit
|
2014-10-22 09:24:44 +00:00
|
|
|
LOCAL_STATIC_JAVA_LIBRARIES := jsr305lib latinime-common-host
|
2014-06-09 19:16:30 +00:00
|
|
|
LOCAL_REQUIRED_MODULES := $(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
|
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 :=
|
2014-07-29 17:46:38 +00:00
|
|
|
|
|
|
|
endif
|