blob: a28b788418dac70ea16fe475be805c0d8c9ab772 (
plain)
1
2
3
4
5
6
7
8
9
10
|
declare_args() {
# Whether to build with debug information and without optimizations.
is_debug = false
}
# args that depend on other args must live in a later declare_args() block.
declare_args() {
# Whether to enable assertions.
llvm_enable_assertions = true
}
|