blob: a0e435fb098a4ef20f5c90d14bac4fad97833828 [file] [log] [blame]
Sasha Smundake92d56f2019-04-08 14:13:28 -07001// Copyright (C) 2016 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
15// We build two APKs from the same source files, each with a different set of resources.
16android_test_helper_app {
17 name: "CtsShortcutUpgradeVersion1",
18 defaults: [
19 "hostsidetests-shortcuts-deviceside-defaults",
20 "cts_defaults",
21 ],
22 srcs: ["src/**/*.java"],
23 resource_dirs: ["version1/res"],
24 // Tag this module as a cts test artifact
25 test_suites: [
26 "cts",
27 "vts",
28 "general-tests",
29 ],
30}
31
32android_test_helper_app {
33 name: "CtsShortcutUpgradeVersion2",
34 defaults: [
35 "hostsidetests-shortcuts-deviceside-defaults",
36 "cts_defaults",
37 ],
38 // Tag this module as a cts test artifact
39 test_suites: [
40 "cts",
41 "vts",
42 "general-tests",
43 ],
44 srcs: ["src/**/*.java"],
45 resource_dirs: ["version2/res"],
Makoto Onukia96c6292019-04-26 15:36:00 -070046 static_libs: [
47 "compatibility-device-util-axt",
48 ],
Sasha Smundake92d56f2019-04-08 14:13:28 -070049}