From f29c4c5e64d3339bdb2c516d9d8edbe278a6fef5 Mon Sep 17 00:00:00 2001 From: John Moon Date: Tue, 17 Oct 2023 10:18:14 -0700 Subject: [PATCH] ANDROID: bazel: Switch to arch-specific GKI module list Currently, the consolidate build uses COMMON_GKI_MODULES as the implicit build output list. Instead, use the new get_gki_modules_list macro to get the arch-specific list. Change-Id: Ia97ed23fc9ac79999681f1357ff86c36e655ac18 Signed-off-by: John Moon --- consolidate.bzl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/consolidate.bzl b/consolidate.bzl index 4e46a25d0eeb..d0fb5ae0660f 100644 --- a/consolidate.bzl +++ b/consolidate.bzl @@ -6,7 +6,7 @@ load( "kernel_modules_install", ) load("//build/kernel/kleaf:constants.bzl", "aarch64_outs") -load(":modules.bzl", "COMMON_GKI_MODULES_LIST") +load(":modules.bzl", "get_gki_modules_list") rule_base = "kernel_aarch64_consolidate" @@ -49,7 +49,7 @@ def define_consolidate(): "Image.lz4", "Image.gz", ], - module_implicit_outs = COMMON_GKI_MODULES_LIST, + module_implicit_outs = get_gki_modules_list("arm64"), build_config = rule_base + "_build_config", )