blob: 22cc2f4ebbd88d58c862b2e766f453294ceab618 [file] [log] [blame]
Sasha Smundakee2bb482019-05-14 14:31:23 -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
15android_test_helper_app {
16 name: "CtsMediaStorageApp",
17 defaults: ["cts_support_defaults"],
18 sdk_version: "test_current",
19 static_libs: [
20 "compatibility-device-util-axt",
21 "androidx.test.rules",
22 "ub-uiautomator",
23 ],
24 libs: ["android.test.base.stubs"],
25 srcs: ["src/**/*.java"],
26 asset_dirs: ["assets"],
27 test_suites: [
28 "cts",
29 "vts",
30 "general-tests",
31 ],
32}
33
34android_test_helper_app {
35 name: "CtsMediaStorageApp28",
36 defaults: ["cts_support_defaults"],
37 sdk_version: "test_current",
38 static_libs: [
39 "compatibility-device-util-axt",
40 "androidx.test.rules",
41 "ub-uiautomator",
42 ],
43 libs: ["android.test.base.stubs"],
44 srcs: ["src/**/*.java"],
45 asset_dirs: ["assets"],
46 test_suites: [
47 "cts",
48 "vts",
49 "general-tests",
50 ],
51 manifest: "AndroidManifest28.xml",
52}
53
54android_test_helper_app {
55 name: "CtsMediaStorageAppFull",
56 defaults: ["cts_support_defaults"],
57 sdk_version: "test_current",
58 static_libs: [
59 "compatibility-device-util-axt",
60 "androidx.test.rules",
61 "ub-uiautomator",
62 ],
63 libs: ["android.test.base.stubs"],
64 srcs: ["src/**/*.java"],
65 asset_dirs: ["assets"],
66 test_suites: [
67 "cts",
68 "vts",
69 "general-tests",
70 ],
71 manifest: "AndroidManifestFull.xml",
72}