blob: 72379fa3d96fe4adad2f4c7403d3fed1bb1b0bef [file] [log] [blame]
Han-Wen Nienhuysd08b27f2015-02-25 16:45:20 +01001cc_library(
2 name = "hello-lib",
3 srcs = ["hello-lib.cc"],
4 hdrs = ["hello-lib.h"],
5)
6
7cc_binary(
8 name = "hello-world",
9 srcs = ["hello-world.cc"],
10 deps = [":hello-lib"],
11)
12
13cc_test(
14 name = "hello-success_test",
15 srcs = ["hello-world.cc"],
16 deps = [":hello-lib"],
17)
18
19cc_test(
20 name = "hello-fail_test",
21 srcs = ["hello-fail.cc"],
22 deps = [":hello-lib"],
23)
Damien Martin-Guillerez5cbd5a42015-03-24 21:55:19 +000024
25filegroup(
26 name = "srcs",
Damien Martin-Guillerez7d265e02016-07-01 13:33:48 +000027 srcs = glob(["**"]),
Xavier Bonaventura1fafa962022-10-12 21:17:40 -070028 visibility = ["//examples:__pkg__"],
Damien Martin-Guillerez5cbd5a42015-03-24 21:55:19 +000029)