Soong: Add synopsis to vndk_prebuilt_shared module under cc package.

Added vndk_prebuilt_shared synopsis.

Bug: b/128337482
Test: Generated the documentation and verified that the synopsis
      was added to the vndk_prebuilt_shared module.

Change-Id: Id40246de65985b8b3b357744083c1d32c872e2ff
This commit is contained in:
Patrice Arruda 2019-04-01 10:56:49 -07:00
parent 80eb6907ac
commit ad0315089c
1 changed files with 20 additions and 0 deletions

View File

@ -172,6 +172,26 @@ func vndkPrebuiltSharedLibrary() *Module {
return module
}
// vndk_prebuilt_shared installs Vendor Native Development kit (VNDK) snapshot
// shared libraries for system build. Example:
//
// vndk_prebuilt_shared {
// name: "libfoo",
// version: "27.1.0",
// vendor_available: true,
// vndk: {
// enabled: true,
// },
// export_include_dirs: ["include/external/libfoo/vndk_include"],
// arch: {
// arm64: {
// srcs: ["arm/lib64/libfoo.so"],
// },
// arm: {
// srcs: ["arm/lib/libfoo.so"],
// },
// },
// }
func vndkPrebuiltSharedFactory() android.Module {
module := vndkPrebuiltSharedLibrary()
return module.Init()