David Su | 754fcc2 | 2019-09-04 14:31:58 -0700 | [diff] [blame] | 1 | // 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 | |
David Su | 6dcd768 | 2020-01-21 11:23:00 -0800 | [diff] [blame] | 15 | filegroup { |
| 16 | name: "framework-wifi-updatable-exported-aidl-sources", |
| 17 | srcs: ["aidl-export/**/*.aidl"], |
| 18 | path: "aidl-export", |
| 19 | visibility: ["//visibility:private"], |
| 20 | } |
David Su | 754fcc2 | 2019-09-04 14:31:58 -0700 | [diff] [blame] | 21 | |
| 22 | filegroup { |
David Su | 6dcd768 | 2020-01-21 11:23:00 -0800 | [diff] [blame] | 23 | name: "framework-wifi-updatable-java-sources", |
David Su | 754fcc2 | 2019-09-04 14:31:58 -0700 | [diff] [blame] | 24 | srcs: [ |
| 25 | "java/**/*.java", |
| 26 | "java/**/*.aidl", |
| 27 | ], |
| 28 | exclude_srcs: [ |
| 29 | ":framework-wifi-non-updatable-sources" |
| 30 | ], |
| 31 | path: "java", |
David Su | 6dcd768 | 2020-01-21 11:23:00 -0800 | [diff] [blame] | 32 | visibility: ["//visibility:private"], |
| 33 | } |
| 34 | |
| 35 | filegroup { |
| 36 | name: "framework-wifi-updatable-sources", |
| 37 | srcs: [ |
| 38 | ":framework-wifi-updatable-java-sources", |
| 39 | ":framework-wifi-updatable-exported-aidl-sources", |
| 40 | ], |
David Su | 754fcc2 | 2019-09-04 14:31:58 -0700 | [diff] [blame] | 41 | } |
| 42 | |
| 43 | filegroup { |
| 44 | name: "framework-wifi-non-updatable-sources", |
| 45 | srcs: [ |
| 46 | // TODO(b/146011398) package android.net.wifi is now split amongst 2 jars: framework.jar and |
| 47 | // framework-wifi.jar. This is not a good idea, should move WifiNetworkScoreCache |
| 48 | // to a separate package. |
Roshan Pius | aa6527c | 2020-03-18 08:19:35 -0700 | [diff] [blame] | 49 | "java/android/net/wifi/SoftApConfToXmlMigrationUtil.java", |
David Su | 754fcc2 | 2019-09-04 14:31:58 -0700 | [diff] [blame] | 50 | "java/android/net/wifi/WifiNetworkScoreCache.java", |
Roshan Pius | 807b34a | 2020-02-24 09:12:52 -0800 | [diff] [blame] | 51 | "java/android/net/wifi/WifiMigration.java", |
Etan Cohen | 804d94a | 2020-02-15 17:33:27 -0800 | [diff] [blame] | 52 | "java/android/net/wifi/nl80211/*.java", |
David Su | 754fcc2 | 2019-09-04 14:31:58 -0700 | [diff] [blame] | 53 | ":libwificond_ipc_aidl", |
| 54 | ], |
| 55 | } |
| 56 | |
David Su | 130441b | 2019-12-14 21:37:20 -0800 | [diff] [blame] | 57 | filegroup { |
| 58 | name: "framework-wifi-annotations", |
| 59 | srcs: ["java/android/net/wifi/WifiAnnotations.java"], |
| 60 | } |
| 61 | |
David Su | 90ed105 | 2019-12-18 18:20:28 -0800 | [diff] [blame] | 62 | // list of tests that are allowed to access @hide APIs from framework-wifi |
| 63 | test_access_hidden_api_whitelist = [ |
| 64 | "//frameworks/base/wifi/tests", |
| 65 | "//frameworks/opt/net/wifi/tests/wifitests:__subpackages__", |
David Su | 434fe60 | 2019-12-18 21:22:21 -0800 | [diff] [blame] | 66 | |
David Su | 4c5bab6 | 2020-01-07 13:01:30 -0800 | [diff] [blame] | 67 | "//external/robolectric-shadows:__subpackages__", |
David Su | 6c00e38 | 2020-01-06 15:24:42 -0800 | [diff] [blame] | 68 | "//frameworks/base/packages/SettingsLib/tests/integ", |
David Su | 812a8f1 | 2020-01-11 16:22:00 -0800 | [diff] [blame] | 69 | "//external/sl4a:__subpackages__", |
David Su | 90ed105 | 2019-12-18 18:20:28 -0800 | [diff] [blame] | 70 | ] |
| 71 | |
David Su | 511a814 | 2020-01-09 14:02:21 -0800 | [diff] [blame] | 72 | // wifi-service needs pre-jarjared version of framework-wifi so it can reference copied utility |
| 73 | // classes before they are renamed. |
David Su | 754fcc2 | 2019-09-04 14:31:58 -0700 | [diff] [blame] | 74 | java_library { |
David Su | 511a814 | 2020-01-09 14:02:21 -0800 | [diff] [blame] | 75 | name: "framework-wifi-pre-jarjar", |
David Su | 3c0d197 | 2020-03-16 15:53:48 -0700 | [diff] [blame] | 76 | sdk_version: "module_current", |
David Su | 511a814 | 2020-01-09 14:02:21 -0800 | [diff] [blame] | 77 | static_libs: [ |
| 78 | "framework-wifi-util-lib", |
David Su | 369c920 | 2020-01-09 18:09:56 -0800 | [diff] [blame] | 79 | "android.hardware.wifi-V1.0-java-constants", |
David Su | 511a814 | 2020-01-09 14:02:21 -0800 | [diff] [blame] | 80 | ], |
David Su | 754fcc2 | 2019-09-04 14:31:58 -0700 | [diff] [blame] | 81 | libs: [ |
David Su | 369c920 | 2020-01-09 18:09:56 -0800 | [diff] [blame] | 82 | "framework-annotations-lib", |
| 83 | "unsupportedappusage", // for android.compat.annotation.UnsupportedAppUsage |
David Su | 754fcc2 | 2019-09-04 14:31:58 -0700 | [diff] [blame] | 84 | ], |
| 85 | srcs: [ |
| 86 | ":framework-wifi-updatable-sources", |
David Su | 72f9d63 | 2020-02-10 15:58:26 -0800 | [diff] [blame] | 87 | ":framework-wifi-util-lib-aidls", |
David Su | 754fcc2 | 2019-09-04 14:31:58 -0700 | [diff] [blame] | 88 | ], |
David Su | a6f0c86 | 2020-01-21 16:45:50 -0800 | [diff] [blame] | 89 | // java_api_finder must accompany `srcs` |
| 90 | plugins: ["java_api_finder"], |
David Su | 511a814 | 2020-01-09 14:02:21 -0800 | [diff] [blame] | 91 | installable: false, |
| 92 | visibility: [ |
| 93 | "//frameworks/opt/net/wifi/service", |
| 94 | "//frameworks/opt/net/wifi/tests/wifitests", |
| 95 | ], |
| 96 | } |
| 97 | |
| 98 | // post-jarjar version of framework-wifi |
Paul Duffin | 5207958 | 2020-05-13 20:33:29 +0100 | [diff] [blame] | 99 | java_sdk_library { |
David Su | 511a814 | 2020-01-09 14:02:21 -0800 | [diff] [blame] | 100 | name: "framework-wifi", |
Paul Duffin | 5207958 | 2020-05-13 20:33:29 +0100 | [diff] [blame] | 101 | defaults: ["framework-module-defaults"], |
David Su | 511a814 | 2020-01-09 14:02:21 -0800 | [diff] [blame] | 102 | static_libs: [ |
Paul Duffin | 5207958 | 2020-05-13 20:33:29 +0100 | [diff] [blame] | 103 | "framework-wifi-util-lib", |
| 104 | "android.hardware.wifi-V1.0-java-constants", |
David Su | 511a814 | 2020-01-09 14:02:21 -0800 | [diff] [blame] | 105 | ], |
Paul Duffin | 5207958 | 2020-05-13 20:33:29 +0100 | [diff] [blame] | 106 | libs: [ |
| 107 | "unsupportedappusage", // for android.compat.annotation.UnsupportedAppUsage |
| 108 | ], |
| 109 | srcs: [ |
| 110 | ":framework-wifi-updatable-sources", |
| 111 | ":framework-wifi-util-lib-aidls", |
| 112 | ], |
| 113 | |
| 114 | // TODO(b/155480189) - Remove naming_scheme once references have been resolved. |
| 115 | // Temporary java_sdk_library component naming scheme to use to ease the transition from separate |
| 116 | // modules to java_sdk_library. |
| 117 | naming_scheme: "framework-modules", |
| 118 | |
David Su | 511a814 | 2020-01-09 14:02:21 -0800 | [diff] [blame] | 119 | jarjar_rules: ":wifi-jarjar-rules", |
| 120 | |
David Su | 754fcc2 | 2019-09-04 14:31:58 -0700 | [diff] [blame] | 121 | installable: true, |
| 122 | optimize: { |
| 123 | enabled: false |
David Su | 90ed105 | 2019-12-18 18:20:28 -0800 | [diff] [blame] | 124 | }, |
Jiyong Park | c81df3f | 2020-01-06 13:30:59 +0900 | [diff] [blame] | 125 | hostdex: true, // for hiddenapi check |
David Su | 90ed105 | 2019-12-18 18:20:28 -0800 | [diff] [blame] | 126 | visibility: [ |
David Su | 90ed105 | 2019-12-18 18:20:28 -0800 | [diff] [blame] | 127 | "//frameworks/opt/net/wifi/service:__subpackages__", |
| 128 | ] + test_access_hidden_api_whitelist, |
Paul Duffin | 5207958 | 2020-05-13 20:33:29 +0100 | [diff] [blame] | 129 | stubs_library_visibility: ["//visibility:public"], |
Jiyong Park | c81df3f | 2020-01-06 13:30:59 +0900 | [diff] [blame] | 130 | apex_available: [ |
| 131 | "com.android.wifi", |
| 132 | "test_com.android.wifi", |
| 133 | ], |
Vladimir Marko | 8a71e9b | 2020-03-19 14:30:21 +0000 | [diff] [blame] | 134 | permitted_packages: [ |
| 135 | "android.hardware.wifi", |
| 136 | "android.net.wifi", |
| 137 | "android.x.net.wifi", |
Paul Duffin | 407ce9dc | 2020-05-28 14:55:44 +0100 | [diff] [blame] | 138 | // Created by jarjar rules. |
| 139 | "com.android.wifi.x", |
Vladimir Marko | 8a71e9b | 2020-03-19 14:30:21 +0000 | [diff] [blame] | 140 | ], |
David Su | 754fcc2 | 2019-09-04 14:31:58 -0700 | [diff] [blame] | 141 | } |
| 142 | |
David Su | 90ed105 | 2019-12-18 18:20:28 -0800 | [diff] [blame] | 143 | // defaults for tests that need to build against framework-wifi's @hide APIs |
| 144 | java_defaults { |
| 145 | name: "framework-wifi-test-defaults", |
| 146 | sdk_version: "core_platform", // tests can use @CorePlatformApi's |
| 147 | libs: [ |
David Su | cc38e1f | 2020-01-07 19:47:28 -0800 | [diff] [blame] | 148 | // order matters: classes in framework-wifi are resolved before framework, meaning |
| 149 | // @hide APIs in framework-wifi are resolved before @SystemApi stubs in framework |
Paul Duffin | 5207958 | 2020-05-13 20:33:29 +0100 | [diff] [blame] | 150 | "framework-wifi.impl", |
David Su | cc38e1f | 2020-01-07 19:47:28 -0800 | [diff] [blame] | 151 | "framework", |
David Su | 90ed105 | 2019-12-18 18:20:28 -0800 | [diff] [blame] | 152 | |
| 153 | // if sdk_version="" this gets automatically included, but here we need to add manually. |
| 154 | "framework-res", |
| 155 | ], |
| 156 | visibility: test_access_hidden_api_whitelist, |
| 157 | } |
David Su | 511a814 | 2020-01-09 14:02:21 -0800 | [diff] [blame] | 158 | |
| 159 | filegroup { |
| 160 | name: "wifi-jarjar-rules", |
| 161 | srcs: ["jarjar-rules.txt"], |
| 162 | } |