Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit ad031508 authored by Patrice Arruda's avatar Patrice Arruda
Browse files

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
parent 80eb6907
Loading
Loading
Loading
Loading
+20 −0
Original line number Diff line number Diff line
@@ -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()