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

Commit 084877aa authored by Zi Wang's avatar Zi Wang Committed by Gerrit Code Review
Browse files

Merge "Add a phony module for llndk libraries" into main

parents 7778be9b e5b1bb3b
Loading
Loading
Loading
Loading
+28 −0
Original line number Diff line number Diff line
@@ -122,3 +122,31 @@ bootstrap_go_package {
    // Used by plugins
    visibility: ["//visibility:public"],
}

phony {
    name: "llndk_libs",
    required: [
        "libEGL",
        "libGLESv1_CM",
        "libGLESv2",
        "libGLESv3",
        "libRS",
        "libandroid_net",
        "libapexsupport",
        "libbinder_ndk",
        "libc",
        "libcgrouprc",
        "libclang_rt.asan",
        "libdl",
        "libft2",
        "liblog",
        "libm",
        "libmediandk",
        "libnativewindow",
        "libselinux",
        "libsync",
        "libvendorsupport",
        "libvndksupport",
        "libvulkan",
    ],
}
+2 −2
Original line number Diff line number Diff line
@@ -15,11 +15,12 @@
package fsgen

import (
	"android/soong/android"
	"fmt"
	"slices"
	"sync"

	"android/soong/android"

	"github.com/google/blueprint/proptools"
)

@@ -113,7 +114,6 @@ func createFsGenState(ctx android.LoadHookContext, generatedPrebuiltEtcModuleNam
					"dex_bootjars":                              defaultDepCandidateProps(ctx.Config()),
					"framework_compatibility_matrix.device.xml": defaultDepCandidateProps(ctx.Config()),
					"init.environ.rc-soong":                     defaultDepCandidateProps(ctx.Config()),
					"libclang_rt.asan":                          defaultDepCandidateProps(ctx.Config()),
					"libcompiler_rt":                            defaultDepCandidateProps(ctx.Config()),
					"libdmabufheap":                             defaultDepCandidateProps(ctx.Config()),
					"libgsi":                                    defaultDepCandidateProps(ctx.Config()),