summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorYifan Hong <elsk@google.com>2022-09-15 18:27:54 +0000
committerYifan Hong <elsk@google.com>2022-09-15 18:27:54 +0000
commit43800e02dfe9e4d179f587e2443b188f63393b12 (patch)
tree2db331c8931696674b79e80f1fd272659ce56fb0
parent67e88a473c41adb934edc961f54fe7b9932b4578 (diff)
downloadbuild-43800e02dfe9e4d179f587e2443b188f63393b12.tar.gz
Revert "kleaf: exclude backup files in glob expression"
This reverts commit 67e88a473c41adb934edc961f54fe7b9932b4578. Reason for revert: we'll use solution to not glob Change-Id: Ie0ae4bb1c053d65a4d593fe81da40579aa2cfd46
-rw-r--r--kleaf/common_kernels.bzl6
1 files changed, 1 insertions, 5 deletions
diff --git a/kleaf/common_kernels.bzl b/kleaf/common_kernels.bzl
index d373c716..719716d4 100644
--- a/kleaf/common_kernels.bzl
+++ b/kleaf/common_kernels.bzl
@@ -105,11 +105,7 @@ def _default_target_configs():
aarch64_kmi_symbol_list = aarch64_kmi_symbol_list[0] if aarch64_kmi_symbol_list else None
aarch64_additional_kmi_symbol_lists = native.glob(
["android/abi_gki_aarch64*"],
- exclude = [
- "**/*.xml",
- "**/*~",
- "android/abi_gki_aarch64",
- ],
+ exclude = ["**/*.xml", "android/abi_gki_aarch64"],
)
aarch64_trim_and_check = bool(aarch64_kmi_symbol_list) or len(aarch64_additional_kmi_symbol_lists) > 0
aarch64_abi_definition = native.glob(["android/abi_gki_aarch64.xml"])