mirror of
https://github.com/klzgrad/naiveproxy.git
synced 2024-11-24 22:36:09 +03:00
111 lines
1.2 KiB
Plaintext
111 lines
1.2 KiB
Plaintext
# Test zero, one, and multiple element for specifically named LHSs.
|
|
if (true) {
|
|
cflags = []
|
|
cflags_c = []
|
|
cflags_cc = []
|
|
data = []
|
|
datadeps = []
|
|
defines = []
|
|
deps = []
|
|
include_dirs = []
|
|
inputs = []
|
|
ldflags = []
|
|
outputs = []
|
|
public_deps = []
|
|
sources = []
|
|
} else if (true) {
|
|
cflags = [ "x" ]
|
|
cflags_c = [ "x" ]
|
|
cflags_cc = [ "x" ]
|
|
data = [
|
|
"x",
|
|
]
|
|
datadeps = [
|
|
"x",
|
|
]
|
|
defines = [ "x" ]
|
|
deps = [
|
|
"x",
|
|
]
|
|
include_dirs = [ "x" ]
|
|
inputs = [
|
|
"x",
|
|
]
|
|
ldflags = [ "x" ]
|
|
outputs = [
|
|
"x",
|
|
]
|
|
public_deps = [
|
|
"x",
|
|
]
|
|
sources = [
|
|
"x",
|
|
]
|
|
} else {
|
|
cflags = [
|
|
"x",
|
|
"y",
|
|
"z",
|
|
]
|
|
cflags_c = [
|
|
"x",
|
|
"y",
|
|
"z",
|
|
]
|
|
cflags_cc = [
|
|
"x",
|
|
"y",
|
|
"z",
|
|
]
|
|
data = [
|
|
"x",
|
|
"y",
|
|
"z",
|
|
]
|
|
datadeps = [
|
|
"x",
|
|
"y",
|
|
"z",
|
|
]
|
|
defines = [
|
|
"x",
|
|
"y",
|
|
"z",
|
|
]
|
|
deps = [
|
|
"x",
|
|
"y",
|
|
"z",
|
|
]
|
|
include_dirs = [
|
|
"x",
|
|
"y",
|
|
"z",
|
|
]
|
|
inputs = [
|
|
"x",
|
|
"y",
|
|
"z",
|
|
]
|
|
ldflags = [
|
|
"x",
|
|
"y",
|
|
"z",
|
|
]
|
|
outputs = [
|
|
"x",
|
|
"y",
|
|
"z",
|
|
]
|
|
public_deps = [
|
|
"x",
|
|
"y",
|
|
"z",
|
|
]
|
|
sources = [
|
|
"x",
|
|
"y",
|
|
"z",
|
|
]
|
|
}
|