ANDROID: bazel: Adding make_goals to consolidate build

With a recent upstream change, build.config MAKE_GOALS are no longer
respected. So, we must define our make goals via the kernel_build
rule.

Add make_rules to the consolidate build.

Bug: 284126265
Change-Id: I30a98807d47a2be50c681d154d1bd0360e8bfe34
Signed-off-by: John Moon <quic_johmoo@quicinc.com>
This commit is contained in:
John Moon 2023-05-24 20:05:19 -07:00
parent 391691c4ea
commit 7f42bef3a9

View file

@ -43,6 +43,12 @@ def define_consolidate():
"certs/signing_key.pem",
"certs/signing_key.x509",
],
make_goals = [
"Image",
"modules",
"Image.lz4",
"Image.gz",
],
module_implicit_outs = COMMON_GKI_MODULES_LIST,
build_config = rule_base + "_build_config",
)