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

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

Issue 2692273008: Hacky slashy (Closed)
Patch Set: . Created 3 years, 10 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
« base/sys_info_fuchsia.cc ('K') | « testing/test.gni ('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
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 || is_android || is_nacl) { 7 if (is_linux || is_android || is_nacl || is_fuchsia) {
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"
11 } else if (is_win) { 11 } else if (is_win) {
12 os_include = "win32" 12 os_include = "win32"
13 } 13 }
14 14
15 config("libxml_config") { 15 config("libxml_config") {
16 # Define LIBXML_STATIC as nothing to match how libxml.h (an internal header) 16 # Define LIBXML_STATIC as nothing to match how libxml.h (an internal header)
17 # defines LIBXML_STATIC, otherwise we get the macro redefined warning from 17 # defines LIBXML_STATIC, otherwise we get the macro redefined warning from
(...skipping 173 matching lines...) Expand 10 before | Expand all | Expand 10 after
191 ] 191 ]
192 192
193 public_configs = [ ":libxml_config" ] 193 public_configs = [ ":libxml_config" ]
194 public_deps = [ 194 public_deps = [
195 "//third_party/icu:icuuc", 195 "//third_party/icu:icuuc",
196 ] 196 ]
197 deps = [ 197 deps = [
198 "//third_party/zlib", 198 "//third_party/zlib",
199 ] 199 ]
200 200
201 if (is_mac || is_ios || is_android) { 201 if (is_mac || is_ios || is_android || is_fuchsia) {
202 # http://www.xmlsoft.org/threads.html says that this is required when using 202 # http://www.xmlsoft.org/threads.html says that this is required when using
203 # libxml from several threads, which can possibly happen in chrome. On 203 # libxml from several threads, which can possibly happen in chrome. On
204 # linux, this is picked up by transitivity from pkg-config output from 204 # linux, this is picked up by transitivity from pkg-config output from
205 # build/linux/system.gyp. 205 # build/linux/system.gyp.
206 defines = [ "_REENTRANT" ] 206 defines = [ "_REENTRANT" ]
207 } 207 }
208 208
209 include_dirs = [ "$os_include" ] 209 include_dirs = [ "$os_include" ]
210 } 210 }
OLDNEW
« base/sys_info_fuchsia.cc ('K') | « testing/test.gni ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698