• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1cc_library_headers {
2    name: "avrcp_headers",
3    defaults: ["libchrome_support_defaults"],
4    include_dirs: ["system/bt/internal_include"],
5    export_include_dirs: ["./hardware/avrcp/"],
6    header_libs: ["internal_include_headers"],
7    export_header_lib_headers: ["internal_include_headers"],
8
9    // We need this in case some file outside of the Bluetooth project includes
10    // bluetooth.h but doesn't include libchrome which avrcp.h depends on.
11    export_shared_lib_headers: ["libchrome"],
12
13    vendor_available: true,
14    host_supported: true,
15}
16
17cc_library_headers {
18    name: "libbluetooth_headers",
19    defaults: ["libchrome_support_defaults"],
20    header_libs: [
21        "avrcp_headers",
22        "libbluetooth-types-header",
23    ],
24    export_header_lib_headers: [
25        "avrcp_headers",
26        "libbluetooth-types-header",
27    ],
28    export_include_dirs: ["./"],
29    vendor_available: true,
30    host_supported: true,
31}
32