2016-07-13 07:10:56 +02:00
|
|
|
|
2017-06-30 21:46:57 +02:00
|
|
|
cc_library_headers {
|
|
|
|
name: "libnativebridge-dummy-headers",
|
|
|
|
|
|
|
|
host_supported: true,
|
|
|
|
export_include_dirs=["include"],
|
|
|
|
}
|
|
|
|
|
2016-07-13 07:10:56 +02:00
|
|
|
cc_library {
|
|
|
|
name: "libnativebridge",
|
|
|
|
|
|
|
|
host_supported: true,
|
|
|
|
srcs: ["native_bridge.cc"],
|
2017-08-23 10:25:22 +02:00
|
|
|
shared_libs: ["liblog", "libbase"],
|
2016-07-13 07:10:56 +02:00
|
|
|
|
2017-06-30 21:46:57 +02:00
|
|
|
export_include_dirs=["include"],
|
|
|
|
|
2016-07-13 07:10:56 +02:00
|
|
|
cflags: [
|
|
|
|
"-Werror",
|
|
|
|
"-Wall",
|
|
|
|
],
|
|
|
|
cppflags: [
|
|
|
|
"-fvisibility=protected",
|
|
|
|
],
|
|
|
|
}
|
2017-05-09 00:29:10 +02:00
|
|
|
|
2017-06-30 21:46:57 +02:00
|
|
|
subdirs = ["tests"]
|