1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
|
# Sorting, making sure we don't detach comments.
sources = []
sources = ["x.cc"]
sources = [
"/a",
"/b",
"/c",
# End of block.
]
sources += [
# Start of block, separate.
"c",
"a",
"b",
]
sources += [
"z",
"z2",
# Attached comment.
"y.h",
"y.cc",
"y.mm",
"y.rc",
"a"
]
sources += [
"z",
"z2",
# Block comment.
"y.h",
"y.cc",
"y.mm",
"y.rc",
"a"
]
sources += [
"z",
"z2",
#
# Multiline block comment.
#
"y.h",
"y.cc",
"y.mm",
"y.rc",
"a"
]
# With identifiers.
sources += [
"a",
"b",
"c",
some_other_thing,
abcd,
]
# With accessors.
sources += [
"a",
wee[0],
"b",
invoker.stuff,
"c",
]
# Various separated blocks.
sources -= [
# Fix this test to build on Windows.
"focus_cycler_unittest.cc",
# All tests for multiple displays: not supported on Windows Ash.
"wm/drag_window_resizer_unittest.cc",
# Accelerometer is only available on Chrome OS.
"wm/maximize_mode/maximize_mode_controller_unittest.cc",
# Can't resize on Windows Ash. http://crbug.com/165962
"autoclick/autoclick_unittest.cc",
"magnifier/magnification_controller_unittest.cc",
# Attached 1.
# Attached 2.
"wm/workspace/workspace_window_resizer_unittest.cc",
"sticky_keys/sticky_keys_overlay_unittest.cc",
"system/tray/media_security/multi_profile_media_tray_item_unittest.cc",
"virtual_keyboard_controller_unittest.cc",
# Separated at end.
"zzzzzzzzzzzzzz.cc",
]
sources += [
"srtp/crypto/include/xfm.h",
# sources
"srtp/srtp/ekt.c",
"srtp/srtp/srtp.c",
"srtp/crypto/rng/prng.c",
"srtp/crypto/rng/rand_source.c",
]
|