1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
# cs/labs/c/BUILD
package(default_visibility = ["//visibility:public"])
cc_library(
name = "hello_lib",
srcs = ["hello_world.c"],
hdrs = ["hello_world.h"],
)
cc_binary(
name = "hello_world",
srcs = ["main.c"],
deps = [":hello_lib"],
)
cc_test(
name = "hello_world_test_gpt_cc",
srcs = ["hello_world_test.gpt.cc"],
deps = [":hello_lib"],
)