blob: afd82e5364c5419c9b071f71e38d0545bec3119e [file] [log] [blame]
Remi NGUYEN VAN794a4b52019-09-06 13:00:33 +09001//
2// Copyright (C) 2019 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
17// Shared utility sources to be used by multiple network modules
18filegroup {
19 name: "net-module-utils-srcs",
20 srcs: ["src/**/*.java"],
markchienf52fa0e2019-11-26 21:09:39 +080021}
22
23// Shared utility sources to be used by tethering modules
24filegroup {
25 name: "tethering-module-utils-srcs",
26 srcs: [
27 "src/android/net/ip/InterfaceController.java",
28 "src/android/net/netlink/*.java",
29 "src/android/net/shared/NetdUtils.java",
30 "src/android/net/shared/RouteUtils.java",
31 "src/android/net/util/InterfaceParams.java",
32 "src/android/net/util/SharedLog.java"
33 ],
34}