platform_system_core/libnativebridge/Android.bp
Dan Willemsen 45f05240c2 Convert more Android.mk files to Android.bp
These modules have their dependencies satisfied, and aren't doing
anything strange.

Change-Id: I72039a15256cbd5e5eee0d79a15d66d74a6c087d
2016-07-13 17:41:45 -07:00

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"],
},
},
}