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

Commit fc453c79 authored by Treehugger Robot's avatar Treehugger Robot Committed by Gerrit Code Review
Browse files

Merge "Soong: Add synopsis to vndk_prebuilt_shared module under cc package."

parents f3f14670 ad031508
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()