config("hello_cc_config") { include_dirs = [ "include" ] } cc_static_library("hello_cc") { sources = [ "src/lib.cc" ] public_configs = [ ":hello_cc_config" ] }