45f05240c2
These modules have their dependencies satisfied, and aren't doing anything strange. Change-Id: I72039a15256cbd5e5eee0d79a15d66d74a6c087d
25 lines
404 B
Text
25 lines
404 B
Text
|
|
cc_library {
|
|
name: "libnativebridge",
|
|
|
|
host_supported: true,
|
|
srcs: ["native_bridge.cc"],
|
|
shared_libs: ["liblog"],
|
|
clang: true,
|
|
|
|
cflags: [
|
|
"-Werror",
|
|
"-Wall",
|
|
],
|
|
cppflags: [
|
|
"-std=gnu++11",
|
|
"-fvisibility=protected",
|
|
],
|
|
|
|
host_ldlibs: ["-ldl"],
|
|
target: {
|
|
android: {
|
|
shared_libs: ["libdl"],
|
|
},
|
|
},
|
|
}
|