blob: fa1803794a206b19e3113aafc38c7334a192fea0 [file] [log] [blame]
# Checks that lists are also sorted if concatenated during an assignment
other_sources = [
"e.cc",
"f.cc",
] +
[
"g.cc",
"h.cc",
]
other_sources = [
":e",
":f",
] +
[
":h",
"g",
]
executable("foo") {
sources = [
"a.cc",
"b.cc",
] +
[
"c.cc",
"d.cc",
] + other_sources
deps = [
":a",
":b",
] +
[
":c",
":d",
] + other_sources
}