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