summaryrefslogtreecommitdiff
path: root/Android.bp
blob: 9829c7fbad268a3432b0babaabdf29a08fb6dd1b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
ndk_headers {
    name: "libandroid_headers",
    from: "include/android",
    to: "android",
    srcs: ["include/android/**/*.h"],
    license: "NOTICE",
}

subdirs = [
    "adbd_auth",
    "cmds/*",
    "headers",
    "libs/*",
    "opengl",
    "services/*",
    "vulkan",
]

cc_library_headers {
    name: "libandroid_sensor_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",
    ],
}