dc699a269f
Bug: N/A Test: builds Change-Id: I89ad00e1c4c7e0767bc80a7ac7935a4d55e090ac
29 lines
473 B
Text
29 lines
473 B
Text
cc_library_headers {
|
|
name: "libnativebridge-dummy-headers",
|
|
|
|
host_supported: true,
|
|
export_include_dirs: ["include"],
|
|
}
|
|
|
|
cc_library {
|
|
name: "libnativebridge",
|
|
|
|
host_supported: true,
|
|
srcs: ["native_bridge.cc"],
|
|
shared_libs: [
|
|
"liblog",
|
|
"libbase",
|
|
],
|
|
|
|
export_include_dirs: ["include"],
|
|
|
|
cflags: [
|
|
"-Werror",
|
|
"-Wall",
|
|
],
|
|
cppflags: [
|
|
"-fvisibility=protected",
|
|
],
|
|
}
|
|
|
|
subdirs = ["tests"]
|