blob: 72a5921b9d6289d2210b3bcf5aea30540ca2b753 [file] [log] [blame] [edit]
cc_library(
name = "abc",
srcs = [
# Animals or animal sounds.
"yellowjacket.c",
"buzz.c",
"caribou.c",
foo(),
# Ocean phenomena.
"wave.c",
"emerald_sea.c",
# End of ocean phenomena.
# Other stuff.
],
)
cc_library(
name = "x",
# do not sort
srcs = [
"x.cc",
"y.cc",
],
data = [
# do not sort
":x",
":y",
],
# buildifier: leave-alone
deps = [
":x",
":y",
":x",
],
)