Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(617)

Side by Side Diff: tools/gn/format_test_data/066.golden

Issue 1766163002: gn format: Support # NOSORT to disable sorting of blocks (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: . Created 4 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « tools/gn/format_test_data/066.gn ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 # Suppress sorting based on comment.
2
3 # NOSORT
4 sources = []
5
6 # NOSORT
7 sources = [
8 "a",
9 ]
10
11 # NOSORT
12 sources += [ "a" ]
13
14 # NOSORT
15 sources = [
16 "z",
17 "z2",
18 "a",
19 "y.cc",
20 ]
21
22 # NOSORT
23 sources += [
24 "z",
25 "z2",
26 "a",
27 "y.cc",
28 ]
OLDNEW
« no previous file with comments | « tools/gn/format_test_data/066.gn ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698