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

Side by Side Diff: tools/gn/secondary/third_party/libxml/BUILD.gn

Issue 138273007: Convert GN single-item list concat to use lists. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: merge Created 6 years, 11 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 | Annotate | Revision Log
OLDNEW
1 # Copyright (c) 2013 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2013 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 # Define an "os_include" variable that points at the OS-specific generated 5 # Define an "os_include" variable that points at the OS-specific generated
6 # headers. These were generated by running the configure script offline. 6 # headers. These were generated by running the configure script offline.
7 if (is_linux) { 7 if (is_linux) {
8 os_include = "linux" 8 os_include = "linux"
9 } else if (is_mac || is_ios) { 9 } else if (is_mac || is_ios) {
10 os_include = "mac" 10 os_include = "mac"
(...skipping 122 matching lines...) Expand 10 before | Expand all | Expand 10 after
133 "src/xmlschemastypes.c", 133 "src/xmlschemastypes.c",
134 "src/xmlstring.c", 134 "src/xmlstring.c",
135 "src/xmlunicode.c", 135 "src/xmlunicode.c",
136 "src/xmlwriter.c", 136 "src/xmlwriter.c",
137 "src/xpath.c", 137 "src/xpath.c",
138 "src/xpointer.c", 138 "src/xpointer.c",
139 "win32/config.h", 139 "win32/config.h",
140 "win32/include/libxml/xmlversion.h", 140 "win32/include/libxml/xmlversion.h",
141 ] 141 ]
142 142
143 configs -= "//build/config/compiler:chromium_code" 143 configs -= [ "//build/config/compiler:chromium_code" ]
144 configs += "//build/config/compiler:no_chromium_code" 144 configs += [ "//build/config/compiler:no_chromium_code" ]
145 145
146 direct_dependent_configs = [ ":libxml_config" ] 146 direct_dependent_configs = [ ":libxml_config" ]
147 forward_dependent_configs_from = [ "//third_party/icu:icuuc" ] 147 forward_dependent_configs_from = [ "//third_party/icu:icuuc" ]
148 148
149 deps = [ 149 deps = [
150 "//third_party/icu:icuuc", 150 "//third_party/icu:icuuc",
151 "//third_party/zlib", 151 "//third_party/zlib",
152 ] 152 ]
153 153
154 if (is_win) { 154 if (is_win) {
(...skipping 23 matching lines...) Expand all
178 178
179 # See http://crbug.com/138571#c8 179 # See http://crbug.com/138571#c8
180 "-Wno-ignored-attributes", 180 "-Wno-ignored-attributes",
181 ] 181 ]
182 } 182 }
183 183
184 include_dirs = [ 184 include_dirs = [
185 "$os_include", 185 "$os_include",
186 ] 186 ]
187 } 187 }
OLDNEW
« no previous file with comments | « tools/gn/secondary/third_party/libusb/BUILD.gn ('k') | tools/gn/secondary/third_party/sfntly/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698