mirror of
https://github.com/klzgrad/naiveproxy.git
synced 2024-11-24 14:26:09 +03:00
11 lines
265 B
Plaintext
11 lines
265 B
Plaintext
|
# This is a block comment that goes at the top of the file and is attached to
|
||
|
# the top level target.
|
||
|
executable("test") {
|
||
|
sources = [
|
||
|
"stuff.cc",# Comment attached to list item.
|
||
|
"things.cc"
|
||
|
]
|
||
|
# Comment attached to statement.
|
||
|
deps = [ "//base", ]
|
||
|
}
|