blob: 48da170c61e5d6b6fe5188e6b2be6c17d7073ffc [file]
group("default") {
deps = [
"//hello_world/src:hello_world",
":c_main",
]
}
static_library("c_lib") {
complete_static_lib = true
deps = [ "//hello_world/foo/src:foo" ]
sources = [ "c_lib.cc" ]
}
executable("c_main") {
deps = [ ":c_lib" ]
sources = [ "c_main.cc" ]
}