• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1package {
2    // See: http://go/android-license-faq
3    // A large-scale-change added 'default_applicable_licenses' to import
4    // all of the 'license_kinds' from "system_bt_license"
5    // to get the below license kinds:
6    //   SPDX-license-identifier-Apache-2.0
7    default_applicable_licenses: ["system_bt_license"],
8}
9
10cc_library_headers {
11    name: "avrcp_headers",
12    defaults: ["libchrome_support_defaults"],
13    export_include_dirs: ["./hardware/avrcp/"],
14    header_libs: ["internal_include_headers"],
15    export_header_lib_headers: ["internal_include_headers"],
16
17    // We need this in case some file outside of the Bluetooth project includes
18    // bluetooth.h but doesn't include libchrome which avrcp.h depends on.
19    export_shared_lib_headers: ["libchrome"],
20
21    vendor_available: true,
22    host_supported: true,
23    apex_available: [
24        "//apex_available:platform",
25        "com.android.bluetooth.updatable",
26    ],
27}
28
29cc_library_headers {
30    name: "libbluetooth_headers",
31    defaults: ["libchrome_support_defaults"],
32    header_libs: [
33        "avrcp_headers",
34        "libbluetooth-types-header",
35    ],
36    export_header_lib_headers: [
37        "avrcp_headers",
38        "libbluetooth-types-header",
39    ],
40    export_include_dirs: ["./"],
41    vendor_available: true,
42    host_supported: true,
43}
44