blob: 7b8817692b74b30722e8554db86a7b935c19b1ca [file] [log] [blame]
paulhu9dbe49f2021-11-18 15:29:03 +08001//
2// Copyright (C) 2021 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 {
18 // See: http://go/android-license-faq
19 default_applicable_licenses: ["Android-Apache-2.0"],
20}
21
Junyu Lai8074ed32021-12-07 08:25:31 +000022// NetworkStats related libraries.
23
24filegroup {
25 name: "services.connectivity-netstats-sources",
26 srcs: [
27 "src/com/android/server/net/NetworkIdentity*.java",
28 "src/com/android/server/net/NetworkStats*.java",
29 ],
30 path: "src",
31 visibility: [
32 "//visibility:private",
33 ],
34}
35
36// Nsd related libraries.
37
paulhu9dbe49f2021-11-18 15:29:03 +080038filegroup {
39 name: "services.connectivity-nsd-sources",
40 srcs: [
Junyu Lai8074ed32021-12-07 08:25:31 +000041 "src/com/android/server/INativeDaemon*.java",
42 "src/com/android/server/NativeDaemon*.java",
43 "src/com/android/server/Nsd*.java",
44 ],
45 path: "src",
46 visibility: [
47 "//visibility:private",
48 ],
49}
50
Aaron Huang8f4e2362021-12-10 17:36:49 +080051// IpSec related libraries.
52
53filegroup {
54 name: "services.connectivity-ipsec-sources",
55 srcs: [
56 "src/com/android/server/IpSecService.java",
57 ],
58 path: "src",
59 visibility: [
60 "//visibility:private",
61 ],
62}
63
Junyu Lai8074ed32021-12-07 08:25:31 +000064// Connectivity-T common libraries.
65
66filegroup {
67 name: "services.connectivity-tiramisu-sources",
68 srcs: [
Aaron Huang8f4e2362021-12-10 17:36:49 +080069 ":services.connectivity-ipsec-sources",
Junyu Lai8074ed32021-12-07 08:25:31 +000070 ":services.connectivity-netstats-sources",
71 ":services.connectivity-nsd-sources",
paulhu9dbe49f2021-11-18 15:29:03 +080072 ],
73 path: "src",
Aaron Huang8f4e2362021-12-10 17:36:49 +080074 visibility: ["//frameworks/base/services/core"],
75}