blob: 45467b880f57a28915b8fd8b8135c87fcb0f739d [file] [log] [blame]
# Suppress sorting based on comment.
# NOSORT
sources = []
# NOSORT
sources = [
"a",
]
# NOSORT
sources += [ "a" ]
# NOSORT
sources = [
"z",
"z2",
"a",
"y.cc",
]
# NOSORT
sources += [
"z",
"z2",
"a",
"y.cc",
]