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

Side by Side Diff: tools/gn/format_test_data/042.gn

Issue 780543003: gn format: Add 'outputs' to preferred-multiline lists (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: . Created 6 years 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
OLDNEW
1 # Test zero, one, and multiple element for specifically named LHSs. 1 # Test zero, one, and multiple element for specifically named LHSs.
2 if (true) { 2 if (true) {
3 cflags = [] 3 cflags = []
4 cflags_c = [] 4 cflags_c = []
5 cflags_cc = [] 5 cflags_cc = []
6 data = [] 6 data = []
7 datadeps = [] 7 datadeps = []
8 defines = [] 8 defines = []
9 deps = [] 9 deps = []
10 include_dirs = [] 10 include_dirs = []
11 inputs = [] 11 inputs = []
12 ldflags = [] 12 ldflags = []
13 outputs = []
13 public_deps = [] 14 public_deps = []
14 sources = [] 15 sources = []
15 } else if (true) { 16 } else if (true) {
16 cflags = [ "x" ] 17 cflags = [ "x" ]
17 cflags_c = [ "x" ] 18 cflags_c = [ "x" ]
18 cflags_cc = [ "x" ] 19 cflags_cc = [ "x" ]
19 data = [ "x" ] 20 data = [ "x" ]
20 datadeps = [ "x" ] 21 datadeps = [ "x" ]
21 defines = [ "x" ] 22 defines = [ "x" ]
22 deps = [ "x" ] 23 deps = [ "x" ]
23 include_dirs = [ "x" ] 24 include_dirs = [ "x" ]
24 inputs = [ "x" ] 25 inputs = [ "x" ]
25 ldflags = [ "x" ] 26 ldflags = [ "x" ]
27 outputs = [ "x" ]
26 public_deps = [ "x" ] 28 public_deps = [ "x" ]
27 sources = [ "x" ] 29 sources = [ "x" ]
28 } else { 30 } else {
29 cflags = [ "x", "y", "z"] 31 cflags = [ "x", "y", "z"]
30 cflags_c = [ "x", "y", "z"] 32 cflags_c = [ "x", "y", "z"]
31 cflags_cc = [ "x", "y", "z"] 33 cflags_cc = [ "x", "y", "z"]
32 data = [ "x", "y", "z"] 34 data = [ "x", "y", "z"]
33 datadeps = [ "x", "y", "z"] 35 datadeps = [ "x", "y", "z"]
34 defines = [ "x", "y", "z"] 36 defines = [ "x", "y", "z"]
35 deps = [ "x", "y", "z"] 37 deps = [ "x", "y", "z"]
36 include_dirs = [ "x", "y", "z"] 38 include_dirs = [ "x", "y", "z"]
37 inputs = [ "x", "y", "z"] 39 inputs = [ "x", "y", "z"]
38 ldflags = [ "x", "y", "z"] 40 ldflags = [ "x", "y", "z"]
41 outputs = [ "x", "y", "z"]
39 public_deps = [ "x", "y", "z"] 42 public_deps = [ "x", "y", "z"]
40 sources = [ "x", "y", "z"] 43 sources = [ "x", "y", "z"]
41 } 44 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698