apheleia/test/formatters/samplecode/buildifier/out.bazel

9 lines
264 B
Text
Raw Normal View History

2023-04-22 11:38:15 +01:00
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"])