summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorYifan Hong <elsk@google.com>2021-11-10 22:10:50 -0800
committerYifan Hong <elsk@google.com>2021-11-12 10:38:51 -0800
commit64cdd9f53a5fd5888fc6c3d5e0ed4f1cbae6818b (patch)
tree6074477840d8f281c6531adaf603f24b26850da2
parentec99ad38f8b255a7d058c87767f99410e93ceb3d (diff)
downloadbuild-tools-64cdd9f53a5fd5888fc6c3d5e0ed4f1cbae6818b.tar.gz
kleaf: expose dynamic libraries as its own filegroup
so kernel.bzl can locate its directory more precisely. Test: build cuttlefish Bug: 202075496 Change-Id: I6bb2ed4e568f73fdd2f226bc5728239a17165bab
-rw-r--r--BUILD.bazel5
1 files changed, 5 insertions, 0 deletions
diff --git a/BUILD.bazel b/BUILD.bazel
index e34490a..e5465d9 100644
--- a/BUILD.bazel
+++ b/BUILD.bazel
@@ -4,3 +4,8 @@ filegroup(
name = "linux-x86",
srcs = glob(["linux-x86/**"]),
)
+
+filegroup(
+ name = "linux-x86-libs",
+ srcs = glob(["linux-x86/lib64/*.so"]),
+)