1# Suppress sorting based on comment.
2
3# NOSORT
4sources = []
5
6# NOSORT
7sources = [ "a" ]
8
9# NOSORT
10sources += [ "a" ]
11
12# NOSORT
13# This is NOSORT because reason.
14sources = [
15  "z",
16  "z2",
17  "a",
18  "y.cc",
19]
20
21# This is NOSORT because reason:
22# NOSORT
23sources += [
24  "z",
25  "z2",
26  "a",
27  "y.cc",
28]
29