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 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152
|
package {
// See: http://go/android-license-faq
// A large-scale-change added 'default_applicable_licenses' to import
// all of the 'license_kinds' from "frameworks_native_license"
// to get the below license kinds:
// SPDX-license-identifier-Apache-2.0
default_applicable_licenses: ["frameworks_native_license"],
}
rust_library {
name: "libbinder_rs",
crate_name: "binder",
srcs: ["src/lib.rs"],
rustlibs: [
"libbinder_ndk_sys",
"libdowncast_rs",
"liblibc",
],
host_supported: true,
vendor_available: true,
product_available: true,
target: {
darwin: {
enabled: false,
},
},
apex_available: [
"//apex_available:platform",
"com.android.compos",
"com.android.rkpd",
"com.android.uwb",
"com.android.virt",
],
min_sdk_version: "Tiramisu",
}
rust_library {
name: "libbinder_tokio_rs",
crate_name: "binder_tokio",
srcs: ["binder_tokio/lib.rs"],
rustlibs: [
"libbinder_rs",
"libtokio",
],
host_supported: true,
vendor_available: true,
target: {
darwin: {
enabled: false,
},
},
apex_available: [
"//apex_available:platform",
"com.android.compos",
"com.android.uwb",
"com.android.virt",
],
min_sdk_version: "Tiramisu",
}
rust_library {
name: "libbinder_ndk_sys",
crate_name: "binder_ndk_sys",
srcs: [
"sys/lib.rs",
":libbinder_ndk_bindgen",
],
shared_libs: [
"libbinder_ndk",
],
host_supported: true,
vendor_available: true,
product_available: true,
target: {
darwin: {
enabled: false,
},
},
apex_available: [
"//apex_available:platform",
"com.android.compos",
"com.android.rkpd",
"com.android.uwb",
"com.android.virt",
],
min_sdk_version: "Tiramisu",
lints: "none",
clippy_lints: "none",
visibility: [":__subpackages__"],
}
rust_bindgen {
name: "libbinder_ndk_bindgen",
crate_name: "binder_ndk_bindgen",
wrapper_src: "sys/BinderBindings.hpp",
source_stem: "bindings",
bindgen_flag_files: [
// Unfortunately the only way to specify the rust_non_exhaustive enum
// style for a type is to make it the default
// and then specify constified enums for the enums we don't want
// rustified
"libbinder_ndk_bindgen_flags.txt",
],
shared_libs: [
"libbinder_ndk",
],
host_supported: true,
vendor_available: true,
product_available: true,
// Currently necessary for host builds
// TODO(b/31559095): bionic on host should define this
target: {
darwin: {
enabled: false,
},
},
apex_available: [
"//apex_available:platform",
"com.android.compos",
"com.android.rkpd",
"com.android.uwb",
"com.android.virt",
],
min_sdk_version: "Tiramisu",
}
rust_test {
name: "libbinder_rs-internal_test",
crate_name: "binder",
srcs: ["src/lib.rs"],
test_suites: ["general-tests"],
auto_gen_config: true,
shared_libs: [
"libbinder_ndk",
],
rustlibs: [
"libbinder_ndk_sys",
"libdowncast_rs",
"liblibc",
],
}
rust_test {
name: "libbinder_ndk_bindgen_test",
srcs: [":libbinder_ndk_bindgen"],
crate_name: "binder_ndk_bindgen",
test_suites: ["general-tests"],
auto_gen_config: true,
clippy_lints: "none",
lints: "none",
}
|