1toolchain("toolchain") {
2}
3
4static_library("foo") {
5  deps = [ ":bar" ]
6}
7
8static_library("bar") {
9  deps = [ ":foo" ]
10}
11