• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1package {
2    default_applicable_licenses: ["Android-Apache-2.0"],
3}
4
5cc_defaults {
6    name: "AdbWinApi_defaults",
7
8    host_supported: true,
9    enabled: false,
10    device_supported: false,
11    compile_multilib: "32",
12    target: {
13        windows: {
14            enabled: true,
15        },
16    },
17}
18
19cc_prebuilt_library_shared {
20    name: "AdbWinApi",
21    defaults: ["AdbWinApi_defaults"],
22
23    export_include_dirs: ["usb/api"],
24    srcs: ["prebuilt/usb/AdbWinApi.dll"],
25    windows_import_lib: "prebuilt/usb/AdbWinApi.lib",
26}
27
28cc_prebuilt_library_shared {
29    name: "AdbWinUsbApi",
30    defaults: ["AdbWinApi_defaults"],
31    srcs: ["prebuilt/usb/AdbWinUsbApi.dll"],
32}
33