apheleia/test/formatters/samplecode/buildifier/in.bazel
2023-04-22 11:38:15 +01:00

4 lines
237 B
Text

load("@rules_cc//cc:defs.bzl", "cc_binary", "cc_library");cc_library(
name="hello-greet",
srcs=["hello-greet.cc"],
hdrs=["hello-greet.h"]);cc_binary(name="hello-world", srcs=["hello-world.cc"], deps=[":hello-greet", "//lib:hello-time"])