You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
83 lines
1.9 KiB
83 lines
1.9 KiB
package {
|
|
// See: http://go/android-license-faq
|
|
// A large-scale-change added 'default_applicable_licenses' to import
|
|
// all of the 'license_kinds' from "system_bt_license"
|
|
// to get the below license kinds:
|
|
// SPDX-license-identifier-Apache-2.0
|
|
default_applicable_licenses: ["system_bt_license"],
|
|
}
|
|
|
|
rust_library {
|
|
name: "libbt_common",
|
|
defaults: ["gd_rust_defaults"],
|
|
crate_name: "bt_common",
|
|
srcs: ["src/lib.rs"],
|
|
edition: "2018",
|
|
rustlibs: [
|
|
"libtokio",
|
|
"libnix",
|
|
"liblazy_static",
|
|
"liblog_rust",
|
|
"libcxx",
|
|
"libgrpcio",
|
|
],
|
|
target: {
|
|
android: {
|
|
rustlibs: [
|
|
"libandroid_logger",
|
|
],
|
|
whole_static_libs: ["libbt_common_sys_prop_cxx"],
|
|
shared_libs: [
|
|
"libcutils",
|
|
],
|
|
},
|
|
host: {
|
|
rustlibs: [
|
|
"libenv_logger",
|
|
],
|
|
},
|
|
},
|
|
proc_macros: [
|
|
"libpaste",
|
|
],
|
|
}
|
|
|
|
rust_test_host {
|
|
name: "libbt_common_inline_tests",
|
|
srcs: ["src/lib.rs"],
|
|
test_suites: ["general-tests"],
|
|
auto_gen_config: true,
|
|
rustlibs: [
|
|
"libtokio",
|
|
"libnix",
|
|
"liblazy_static",
|
|
"liblog_rust",
|
|
"libenv_logger",
|
|
"libcxx",
|
|
"libgrpcio",
|
|
],
|
|
proc_macros: [
|
|
"libpaste",
|
|
],
|
|
}
|
|
|
|
genrule {
|
|
name: "libbt_common_sys_prop_bridge_code",
|
|
tools: ["cxxbridge"],
|
|
cmd: "$(location cxxbridge) $(in) >> $(out)",
|
|
srcs: ["src/sys_prop.rs"],
|
|
out: ["sys_prop_generated.cc"],
|
|
}
|
|
|
|
cc_library_static {
|
|
name: "libbt_common_sys_prop_cxx",
|
|
defaults: ["gd_ffi_defaults"],
|
|
local_include_dirs: ["src/ffi"],
|
|
srcs: ["src/ffi/sys_prop.cc"],
|
|
generated_headers: ["cxx-bridge-header"],
|
|
generated_sources: ["libbt_common_sys_prop_bridge_code"],
|
|
shared_libs: [
|
|
"libcutils",
|
|
],
|
|
}
|