Add temporary public visibility for libraries. Update bpfmt for ART's repohooks. Bug: 137364733 Test: m nothing Test: copy libs to art/, create a CL, run repohooks, m nothing. Change-Id: Ib9a280136e4b992fe17b8943cf404c9c803efb8d
65 lines
1.5 KiB
Text
65 lines
1.5 KiB
Text
cc_defaults {
|
|
name: "libnativebridge-defaults",
|
|
cflags: [
|
|
"-Werror",
|
|
"-Wall",
|
|
],
|
|
cppflags: [
|
|
"-fvisibility=protected",
|
|
],
|
|
header_libs: ["libnativebridge-headers"],
|
|
export_header_lib_headers: ["libnativebridge-headers"],
|
|
}
|
|
|
|
cc_library_headers {
|
|
name: "libnativebridge-headers",
|
|
|
|
host_supported: true,
|
|
export_include_dirs: ["include"],
|
|
}
|
|
|
|
cc_library {
|
|
name: "libnativebridge",
|
|
defaults: ["libnativebridge-defaults"],
|
|
// TODO(oth): remove after moving under art/ (b/137364733)
|
|
visibility: ["//visibility:public"],
|
|
|
|
host_supported: true,
|
|
srcs: ["native_bridge.cc"],
|
|
header_libs: [
|
|
"libbase_headers",
|
|
],
|
|
shared_libs: [
|
|
"liblog",
|
|
],
|
|
// TODO(jiyong): remove this line after aosp/885921 lands
|
|
export_include_dirs: ["include"],
|
|
|
|
target: {
|
|
android: {
|
|
version_script: "libnativebridge.map.txt",
|
|
},
|
|
linux: {
|
|
version_script: "libnativebridge.map.txt",
|
|
},
|
|
},
|
|
|
|
stubs: {
|
|
symbol_file: "libnativebridge.map.txt",
|
|
versions: ["1"],
|
|
},
|
|
}
|
|
|
|
// TODO(b/124250621): eliminate the need for this library
|
|
cc_library {
|
|
name: "libnativebridge_lazy",
|
|
defaults: ["libnativebridge-defaults"],
|
|
// TODO(oth): remove after moving under art/ (b/137364733)
|
|
visibility: ["//visibility:public"],
|
|
|
|
host_supported: false,
|
|
srcs: ["native_bridge_lazy.cc"],
|
|
required: ["libnativebridge"],
|
|
}
|
|
|
|
subdirs = ["tests"]
|