blob: 3abd6c19f831d641d90357a88e4c7681abd92d86 [file] [log] [blame]
Dan Willemsen22ebec62018-10-24 17:44:49 -07001// Copyright (C) 2018 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
15filegroup {
16 name: "dicttool_deps",
17 srcs: [
18 "java/src/com/android/inputmethod/latin/makedict/**/*.java",
19
20 // Dependencies for Dicttool. Most of these files are needed by BinaryDictionary.java. Note that
21 // a significant part of the dependencies are mocked in the compat/ directory, with empty or
22 // nearly-empty implementations, for parts that we don't use in Dicttool.
23 "java/src/com/android/inputmethod/latin/BinaryDictionary.java",
24 "java/src/com/android/inputmethod/latin/DicTraverseSession.java",
25 "java/src/com/android/inputmethod/latin/Dictionary.java",
26 "java/src/com/android/inputmethod/latin/NgramContext.java",
27 "java/src/com/android/inputmethod/latin/SuggestedWords.java",
28 "java/src/com/android/inputmethod/latin/settings/SettingsValuesForSuggestion.java",
29 "java/src/com/android/inputmethod/latin/utils/BinaryDictionaryUtils.java",
30 "java/src/com/android/inputmethod/latin/utils/CombinedFormatUtils.java",
31 "java/src/com/android/inputmethod/latin/utils/JniUtils.java",
32
33 "java/src/com/android/inputmethod/latin/define/DebugFlags.java",
34 "java/src/com/android/inputmethod/latin/define/DecoderSpecificConstants.java",
35
36 "tests/src/com/android/inputmethod/latin/utils/ByteArrayDictBuffer.java",
37 "tests/src/com/android/inputmethod/latin/makedict/**/*.java",
38 ],
39}