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.
32 lines
636 B
32 lines
636 B
package {
|
|
default_applicable_licenses: ["external_obstack_license"],
|
|
}
|
|
|
|
license {
|
|
name: "external_obstack_license",
|
|
license_kinds: ["SPDX-license-identifier-LGPL-2.1"],
|
|
license_text: ["LICENSE"],
|
|
}
|
|
|
|
cc_library_host_static {
|
|
name: "libobstack",
|
|
enabled: false,
|
|
target: {
|
|
musl: {
|
|
enabled: true,
|
|
},
|
|
},
|
|
srcs: [
|
|
"libiberty/obstack.c",
|
|
"android/obstack_printf.c",
|
|
],
|
|
local_include_dirs: ["android"],
|
|
export_include_dirs: [
|
|
"android/include",
|
|
"include",
|
|
],
|
|
visibility: [
|
|
"//external/elfutils:__subpackages__",
|
|
],
|
|
}
|