From 5b08d2d9e2703936059d189d10bb5eb4a5ad4b95 Mon Sep 17 00:00:00 2001 From: Ulises Mendez Martinez Date: Fri, 7 Mar 2025 13:35:38 +0000 Subject: [PATCH] ANDROID: Prune default dependencies for kernel_build * Files under gki/ directory are not direct inputs for the kernel_build, they are inputs to ABI related rules or for symbol lists but whenever used they are directly specified as inputs. Bug: 401193617 Change-Id: I0b167986275272d6d434cfca1f8e1b22556cba6b Signed-off-by: Ulises Mendez Martinez --- BUILD.bazel | 3 +++ 1 file changed, 3 insertions(+) diff --git a/BUILD.bazel b/BUILD.bazel index 7060e964c1c5..485d6f773870 100644 --- a/BUILD.bazel +++ b/BUILD.bazel @@ -164,6 +164,9 @@ filegroup( # cscope files "cscope.*", "ncscope.*", + + # ABI and symbol list files + "gki/**", ], ), visibility = ["//visibility:public"],