Merge "Mark the modules as VNDK in Android.bp"

am: 5d1e740e7f

Change-Id: Ie22de4d907116cf2ba74f875679506a3d2a41feb
This commit is contained in:
Justin Yun 2017-09-15 16:31:01 +00:00 committed by android-build-merger
commit 8c03107614
7 changed files with 22 additions and 0 deletions

View file

@ -17,6 +17,9 @@
cc_library {
name: "libcrypto_utils",
vendor_available: true,
vndk: {
enabled: true,
},
host_supported: true,
srcs: [
"android_pubkey.c",

View file

@ -1,6 +1,9 @@
cc_library {
name: "libdiskconfig",
vendor_available: true,
vndk: {
enabled: true,
},
srcs: [
"diskconfig.c",
"diskutils.c",

View file

@ -1,6 +1,9 @@
cc_library_shared {
name: "libnetutils",
vendor_available: true,
vndk: {
enabled: true,
},
srcs: [
"dhcpclient.c",

View file

@ -23,6 +23,9 @@ libprocinfo_cppflags = [
cc_library {
name: "libprocinfo",
vendor_available: true,
vndk: {
enabled: true,
},
host_supported: true,
srcs: [
"process.cpp",

View file

@ -3,6 +3,9 @@
cc_library {
name: "libsuspend",
vendor_available: true,
vndk: {
enabled: true,
},
srcs: [
"autosuspend.c",

View file

@ -1,6 +1,9 @@
cc_library_shared {
name: "libsysutils",
vendor_available: true,
vndk: {
enabled: true,
},
srcs: [
"src/SocketListener.cpp",

View file

@ -16,6 +16,10 @@
cc_library {
name: "libusbhost",
vendor_available: true,
vndk: {
enabled: true,
},
host_supported: true,
srcs: ["usbhost.c"],
cflags: ["-Werror"],