android_kernel_samsung_sm8650/autoghgvm_lxc.bzl
Wei Liu 94be87df73 bazel: remove all in-tree modules for autoghgvm_lxc
remove all in-tree modules for autoghgvm_lxc.

Change-Id: I1eeee689ec4ad0c36474c293ccb02bcbe9ca78a0
Signed-off-by: Wei Liu <quic_wliu8@quicinc.com>
2024-07-31 02:51:36 -07:00

26 lines
733 B
Python

load(":target_variants.bzl", "lxc_variants")
load(":msm_kernel_lxc.bzl", "define_msm_lxc")
load(":image_opts.bzl", "boot_image_opts")
target_name = "autoghgvm"
def define_autoghgvm_lxc():
_autoghgvm_lxc_in_tree_modules = [
# keep sorted
]
for variant in lxc_variants:
mod_list = _autoghgvm_lxc_in_tree_modules
define_msm_lxc(
msm_target = target_name,
variant = variant,
defconfig = "build.config.msm.autoghgvm.lxc",
in_tree_module_list = mod_list,
boot_image_opts = boot_image_opts(
boot_image_header_version = 2,
base_address = 0x80000000,
page_size = 4096,
),
)