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