blob: d7a85c5f75cc66252e4f1342656a016c5f177560 [file] [log] [blame]
David Su754fcc22019-09-04 14:31:58 -07001// Copyright (C) 2019 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
16filegroup {
17 name: "framework-wifi-updatable-sources",
18 srcs: [
19 "java/**/*.java",
20 "java/**/*.aidl",
21 ],
22 exclude_srcs: [
23 ":framework-wifi-non-updatable-sources"
24 ],
25 path: "java",
26}
27
28filegroup {
29 name: "framework-wifi-non-updatable-sources",
30 srcs: [
31 // TODO(b/146011398) package android.net.wifi is now split amongst 2 jars: framework.jar and
32 // framework-wifi.jar. This is not a good idea, should move WifiNetworkScoreCache
33 // to a separate package.
34 "java/android/net/wifi/WifiNetworkScoreCache.java",
35 "java/android/net/wifi/WifiCondManager.java",
36 "java/android/net/wifi/wificond/*.java",
37 ":libwificond_ipc_aidl",
38 ],
39}
40
David Su130441b2019-12-14 21:37:20 -080041filegroup {
42 name: "framework-wifi-annotations",
43 srcs: ["java/android/net/wifi/WifiAnnotations.java"],
44}
45
David Su90ed1052019-12-18 18:20:28 -080046// list of tests that are allowed to access @hide APIs from framework-wifi
47test_access_hidden_api_whitelist = [
48 "//frameworks/base/wifi/tests",
49 "//frameworks/opt/net/wifi/tests/wifitests:__subpackages__",
50]
51
David Su754fcc22019-09-04 14:31:58 -070052java_library {
53 name: "framework-wifi",
David Su90ed1052019-12-18 18:20:28 -080054 // TODO(b/140299412) should be core_current once we build against framework-system-stubs
55 sdk_version: "core_platform",
David Su754fcc22019-09-04 14:31:58 -070056 libs: [
David Su90ed1052019-12-18 18:20:28 -080057 // TODO(b/140299412) should be framework-system-stubs once we fix all @hide dependencies
58 "framework-minus-apex",
David Su754fcc22019-09-04 14:31:58 -070059 ],
60 srcs: [
61 ":framework-wifi-updatable-sources",
62 ],
63 installable: true,
64 optimize: {
65 enabled: false
David Su90ed1052019-12-18 18:20:28 -080066 },
67 visibility: [
68 "//frameworks/base", // TODO(b/140299412) remove once all dependencies are fixed
69 "//frameworks/opt/net/wifi/service:__subpackages__",
70 ] + test_access_hidden_api_whitelist,
David Su754fcc22019-09-04 14:31:58 -070071}
72
David Su754fcc22019-09-04 14:31:58 -070073droidstubs {
74 name: "framework-wifi-stubs-srcs",
75 srcs: [
76 ":framework-annotations",
77 ":framework-wifi-updatable-sources",
78 ],
79 aidl: {
80 include_dirs: ["frameworks/base/core/java"],
81 },
Anton Hansson0c2ebe22019-12-17 10:03:52 +000082 defaults: [ "framework-module-stubs-defaults-systemapi" ],
David Su754fcc22019-09-04 14:31:58 -070083 sdk_version: "core_current",
84 libs: ["android_system_stubs_current"],
85}
86
87java_library {
88 name: "framework-wifi-stubs",
89 srcs: [":framework-wifi-stubs-srcs"],
90 aidl: {
91 export_include_dirs: [
92 "java",
93 ],
94 },
95 sdk_version: "core_current",
96 libs: ["android_system_stubs_current"],
97 installable: false,
98}
99
David Su90ed1052019-12-18 18:20:28 -0800100// defaults for tests that need to build against framework-wifi's @hide APIs
101java_defaults {
102 name: "framework-wifi-test-defaults",
103 sdk_version: "core_platform", // tests can use @CorePlatformApi's
104 libs: [
105 "framework-wifi",
106 "framework-minus-apex",
107
108 // if sdk_version="" this gets automatically included, but here we need to add manually.
109 "framework-res",
110 ],
111 visibility: test_access_hidden_api_whitelist,
112}