blob: 64e94fc8e2f8192e413e0d8ed589f71528a0ea80 [file] [log] [blame]
Sasha Smundakd697c762019-10-30 16:50:07 -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
15java_defaults {
16 name: "CtsVpnAppDefaults",
17 defaults: ["cts_defaults"],
18 srcs: ["src/**/*.java"],
19 platform_apis: true,
20}
21
22android_test_helper_app {
23 name: "CtsVpnFirewallAppApi23",
24 defaults: ["CtsVpnAppDefaults"],
25 manifest: "api23/AndroidManifest.xml",
26 test_suites: [
27 "cts",
Sasha Smundakd697c762019-10-30 16:50:07 -070028 "general-tests",
29 ],
30}
31
32android_test_helper_app {
33 name: "CtsVpnFirewallAppApi24",
34 defaults: ["CtsVpnAppDefaults"],
35 manifest: "api24/AndroidManifest.xml",
36 test_suites: [
37 "cts",
Sasha Smundakd697c762019-10-30 16:50:07 -070038 "general-tests",
39 ],
40}
41
42android_test_helper_app {
43 name: "CtsVpnFirewallApp",
44 defaults: ["CtsVpnAppDefaults"],
45 manifest: "latest/AndroidManifest.xml",
46 test_suites: [
47 "cts",
Sasha Smundakd697c762019-10-30 16:50:07 -070048 "general-tests",
49 ],
50}
51
52android_test_helper_app {
53 name: "CtsVpnFirewallAppNotAlwaysOn",
54 defaults: ["CtsVpnAppDefaults"],
55 manifest: "notalwayson/AndroidManifest.xml",
56 test_suites: [
57 "cts",
Sasha Smundakd697c762019-10-30 16:50:07 -070058 "general-tests",
59 ],
60}