blob: 100b6e487272279c1f9e6f3c9d86b711538ad0e5 [file] [log] [blame]
Yuyang Huang96e8bfe2023-01-27 17:05:07 +09001//
2// Copyright (C) 2023 The Android Open Source Project
3//
4// Licensed under the Apache License, Version 2.0 (the "License");
5// you may not use this file except in compliance with the License.
6// You may obtain a copy of the License at
7//
8// http://www.apache.org/licenses/LICENSE-2.0
9//
10// Unless required by applicable law or agreed to in writing, software
11// distributed under the License is distributed on an "AS IS" BASIS,
12// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13// See the License for the specific language governing permissions and
14// limitations under the License.
15//
16
17package {
Aditya Choudhary01b5ede2024-01-31 11:08:57 +000018 default_team: "trendy_team_fwk_core_networking",
Yuyang Huang96e8bfe2023-01-27 17:05:07 +090019 default_applicable_licenses: ["Android-Apache-2.0"],
20}
21
22java_defaults {
23 name: "CtsHostsideNetworkCapTestsAppDefaults",
24 platform_apis: true,
25 static_libs: [
26 "androidx.test.ext.junit",
27 "androidx.test.rules",
28 "modules-utils-build",
29 "cts-net-utils",
30 ],
31 srcs: ["src/**/*.java"],
32 // Tag this module as a cts test artifact
33 test_suites: [
34 "cts",
35 "general-tests",
36 "sts",
37 ],
38}
39
40android_test_helper_app {
41 name: "CtsHostsideNetworkCapTestsAppWithoutProperty",
42 defaults: [
Aditya Choudhary01b5ede2024-01-31 11:08:57 +000043 "cts_support_defaults",
44 "CtsHostsideNetworkCapTestsAppDefaults",
Yuyang Huang96e8bfe2023-01-27 17:05:07 +090045 ],
46 manifest: "AndroidManifestWithoutProperty.xml",
47}
48
49android_test_helper_app {
50 name: "CtsHostsideNetworkCapTestsAppWithProperty",
51 defaults: [
Aditya Choudhary01b5ede2024-01-31 11:08:57 +000052 "cts_support_defaults",
53 "CtsHostsideNetworkCapTestsAppDefaults",
Yuyang Huang96e8bfe2023-01-27 17:05:07 +090054 ],
55 manifest: "AndroidManifestWithProperty.xml",
56}
57
58android_test_helper_app {
59 name: "CtsHostsideNetworkCapTestsAppSdk33",
60 defaults: [
Aditya Choudhary01b5ede2024-01-31 11:08:57 +000061 "cts_support_defaults",
62 "CtsHostsideNetworkCapTestsAppDefaults",
Yuyang Huang96e8bfe2023-01-27 17:05:07 +090063 ],
64 target_sdk_version: "33",
65 manifest: "AndroidManifestWithoutProperty.xml",
66}