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

Commit 75c76e79 authored by Jiyong Park's avatar Jiyong Park Committed by android-build-merger
Browse files

Merge "Add a filegroup for AIDL files in frameworks/native/aidl" am: 1b68e117 am: 5bc3eaae

am: 1445447b

Change-Id: Iecf70df015d7fbc942640bd8af3f56dc03a1a2c5
parents ebec7dea 1445447b
Loading
Loading
Loading
Loading
+22 −0
Original line number Diff line number Diff line
@@ -20,3 +20,25 @@ cc_library_headers {
    vendor: true,
    export_include_dirs: ["include_sensor"],
}

filegroup {
    name: "framework_native_aidl_binder",
    srcs: ["aidl/binder/**/*.aidl"],
    path: "aidl/binder",
    visibility: ["//frameworks/native"],
}

filegroup {
    name: "framework_native_aidl_gui",
    srcs: ["aidl/gui/**/*.aidl"],
    path: "aidl/gui",
    visibility: ["//frameworks/native"],
}

filegroup {
    name: "framework_native_aidl",
    srcs: [
        ":framework_native_aidl_binder",
        ":framework_native_aidl_gui",
    ],
}