Skip to content

Commit 262d1fa

Browse files
authored
[bazel] Use globs for _AtomicBool sources (#2484)
These were renamed
1 parent 7551449 commit 262d1fa

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

BUILD.bazel

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ package(default_visibility = ["//visibility:public"])
44

55
cc_library(
66
name = "_AtomicBool",
7-
srcs = ["Sources/_AtomicBool/src/AtomicBool.c"],
8-
hdrs = ["Sources/_AtomicBool/include/AtomicBool.h"],
7+
srcs = glob(["Sources/_AtomicBool/src/*.c"]),
8+
hdrs = glob(["Sources/_AtomicBool/include/*.h"]),
99
includes = ["Sources/_AtomicBool/include"],
1010
tags = ["swift_module=_AtomicBool"],
1111
)

0 commit comments

Comments
 (0)