aboutsummaryrefslogtreecommitdiff
path: root/test/formatters/samplecode/buildifier/out.bazel
blob: ad8d7a729fc3d09ff129ab0aeb0505c210363218 (plain)
1
2
3
4
5
6
7
8
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"])