summaryrefslogtreecommitdiff
path: root/gn/tools/gn/format_test_data/042.golden
blob: 1968d0acd94f7c846fc4e70e074c777c3762bb65 (plain)
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
# Test zero, one, and multiple element for specifically named LHSs.
if (true) {
  cflags = []
  cflags_c = []
  cflags_cc = []
  data = []
  datadeps = []
  defines = []
  deps = []
  include_dirs = []
  inputs = []
  ldflags = []
  outputs = []
  public_deps = []
  sources = []
} else if (true) {
  cflags = [ "x" ]
  cflags_c = [ "x" ]
  cflags_cc = [ "x" ]
  data = [
    "x",
  ]
  datadeps = [
    "x",
  ]
  defines = [ "x" ]
  deps = [
    "x",
  ]
  include_dirs = [ "x" ]
  inputs = [
    "x",
  ]
  ldflags = [ "x" ]
  outputs = [
    "x",
  ]
  public_deps = [
    "x",
  ]
  sources = [
    "x",
  ]
} else {
  cflags = [
    "x",
    "y",
    "z",
  ]
  cflags_c = [
    "x",
    "y",
    "z",
  ]
  cflags_cc = [
    "x",
    "y",
    "z",
  ]
  data = [
    "x",
    "y",
    "z",
  ]
  datadeps = [
    "x",
    "y",
    "z",
  ]
  defines = [
    "x",
    "y",
    "z",
  ]
  deps = [
    "x",
    "y",
    "z",
  ]
  include_dirs = [
    "x",
    "y",
    "z",
  ]
  inputs = [
    "x",
    "y",
    "z",
  ]
  ldflags = [
    "x",
    "y",
    "z",
  ]
  outputs = [
    "x",
    "y",
    "z",
  ]
  public_deps = [
    "x",
    "y",
    "z",
  ]
  sources = [
    "x",
    "y",
    "z",
  ]
}