blob: 9b7bb5cd09b725cbebcd80dcf5b1341284b0fdd7 [file] [log] [blame]
# Suppress sorting based on comment.
# NOSORT
sources = []
# NOSORT
sources = [
"a",
]
# NOSORT
sources += [ "a" ]
# NOSORT
# This is NOSORT because reason.
sources = [
"z",
"z2",
"a",
"y.cc",
]
# This is NOSORT because reason:
# NOSORT
sources += [
"z",
"z2",
"a",
"y.cc",
]