Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 743032e0 authored by David Su's avatar David Su Committed by Android (Google) Code Review
Browse files

Merge "Export Wifi Parcelables AIDLs from framework.jar"

parents 25f5eaea 6dcd7688
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -318,6 +318,7 @@ java_defaults {
            "rs/java",
            "sax/java",
            "telecomm/java",
            "wifi/aidl-export",
        ],
    },

+16 −1
Original line number Diff line number Diff line
@@ -12,9 +12,15 @@
// See the License for the specific language governing permissions and
// limitations under the License.

filegroup {
    name: "framework-wifi-updatable-exported-aidl-sources",
    srcs: ["aidl-export/**/*.aidl"],
    path: "aidl-export",
    visibility: ["//visibility:private"],
}

filegroup {
    name: "framework-wifi-updatable-sources",
    name: "framework-wifi-updatable-java-sources",
    srcs: [
        "java/**/*.java",
        "java/**/*.aidl",
@@ -23,6 +29,15 @@ filegroup {
        ":framework-wifi-non-updatable-sources"
    ],
    path: "java",
    visibility: ["//visibility:private"],
}

filegroup {
    name: "framework-wifi-updatable-sources",
    srcs: [
        ":framework-wifi-updatable-java-sources",
        ":framework-wifi-updatable-exported-aidl-sources",
    ],
}

filegroup {
Loading