summaryrefslogtreecommitdiff
path: root/android/filegroup.go
diff options
context:
space:
mode:
author Treehugger Robot <android-test-infra-autosubmit@system.gserviceaccount.com> 2023-10-04 21:11:18 +0000
committer Gerrit Code Review <noreply-gerritcodereview@google.com> 2023-10-04 21:11:18 +0000
commite88fe1fb92b971bde9caa4bb6d82ae399cad4fd9 (patch)
tree038a8fff5e7f9b231b723ec4e53d2848b3d975db /android/filegroup.go
parent31a5b2c1ef833dfb8de7be5d8b8374ed888e55a0 (diff)
parent79ff08f12c2368ba8358ea0eab57816100808172 (diff)
Merge "Expand regex for likely aidl filegroups" into main
Diffstat (limited to 'android/filegroup.go')
-rw-r--r--android/filegroup.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/android/filegroup.go b/android/filegroup.go
index b6e37a50d..856c50e5a 100644
--- a/android/filegroup.go
+++ b/android/filegroup.go
@@ -50,7 +50,7 @@ var (
// ignoring case, checks for proto or protos as an independent word in the name, whether at the
// beginning, end, or middle. e.g. "proto.foo", "bar-protos", "baz_proto_srcs" would all match
filegroupLikelyProtoPattern = regexp.MustCompile("(?i)(^|[^a-z])proto(s)?([^a-z]|$)")
- filegroupLikelyAidlPattern = regexp.MustCompile("(?i)(^|[^a-z])aidl([^a-z]|$)")
+ filegroupLikelyAidlPattern = regexp.MustCompile("(?i)(^|[^a-z])aidl(s)?([^a-z]|$)")
ProtoSrcLabelPartition = bazel.LabelPartition{
Extensions: []string{".proto"},