blob: 86d78e2be4973fa2dbca67827015c49d0955276a [file] [log] [blame]
Sasha Smundak3c5ce662019-05-03 10:59:12 -07001// Copyright (C) 2017 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
15android_test {
16 name: "CtsInputMethodTestCases",
17 defaults: ["cts_defaults"],
18 // Tag this module as a cts test artifact
19 test_suites: [
20 "cts",
Sasha Smundak3c5ce662019-05-03 10:59:12 -070021 "general-tests",
Sasha Smundak3c5ce662019-05-03 10:59:12 -070022 ],
23 compile_multilib: "both",
Jiyong Park89c4e062020-05-19 21:12:39 +090024 libs: ["android.test.runner"],
Sasha Smundak3c5ce662019-05-03 10:59:12 -070025 static_libs: [
26 "androidx.test.rules",
Yohei Yukawab6cd98b2020-06-10 17:09:10 -070027 "androidx.test.uiautomator_uiautomator",
Sasha Smundak3c5ce662019-05-03 10:59:12 -070028 "compatibility-device-util-axt",
29 "ctstestrunner-axt",
30 "CtsMockInputMethodLib",
Kohsuke Yatoh10625e82020-09-22 16:52:04 -070031 "CtsMockSpellCheckerLib",
Joanne Chung421e6482020-01-09 19:48:32 +080032 "testng",
Kohsuke Yatoh10625e82020-09-22 16:52:04 -070033 "kotlin-test",
Sasha Smundak3c5ce662019-05-03 10:59:12 -070034 ],
35 srcs: [
36 "src/**/*.java",
Kohsuke Yatoh10625e82020-09-22 16:52:04 -070037 "src/**/*.kt",
Sasha Smundak3c5ce662019-05-03 10:59:12 -070038 "src/**/I*.aidl",
39 ],
40 aidl: {
41 local_include_dirs: ["src"],
42 },
43 sdk_version: "test_current",
44}