| OLD | NEW |
| 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) { |
| 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 88 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 99 "src/include/libxml/c14n.h", | 99 "src/include/libxml/c14n.h", |
| 100 "src/include/libxml/catalog.h", | 100 "src/include/libxml/catalog.h", |
| 101 "src/include/libxml/chvalid.h", | 101 "src/include/libxml/chvalid.h", |
| 102 "src/include/libxml/debugXML.h", | 102 "src/include/libxml/debugXML.h", |
| 103 "src/include/libxml/dict.h", | 103 "src/include/libxml/dict.h", |
| 104 "src/include/libxml/encoding.h", | 104 "src/include/libxml/encoding.h", |
| 105 "src/include/libxml/entities.h", | 105 "src/include/libxml/entities.h", |
| 106 "src/include/libxml/globals.h", | 106 "src/include/libxml/globals.h", |
| 107 "src/include/libxml/hash.h", | 107 "src/include/libxml/hash.h", |
| 108 "src/include/libxml/list.h", | 108 "src/include/libxml/list.h", |
| 109 "src/include/libxml/nanoftp.h", |
| 110 "src/include/libxml/nanohttp.h", |
| 109 "src/include/libxml/parser.h", | 111 "src/include/libxml/parser.h", |
| 110 "src/include/libxml/parserInternals.h", | 112 "src/include/libxml/parserInternals.h", |
| 111 "src/include/libxml/pattern.h", | 113 "src/include/libxml/pattern.h", |
| 112 "src/include/libxml/relaxng.h", | 114 "src/include/libxml/relaxng.h", |
| 113 "src/include/libxml/schemasInternals.h", | 115 "src/include/libxml/schemasInternals.h", |
| 114 "src/include/libxml/schematron.h", | 116 "src/include/libxml/schematron.h", |
| 115 "src/include/libxml/threads.h", | 117 "src/include/libxml/threads.h", |
| 116 "src/include/libxml/tree.h", | 118 "src/include/libxml/tree.h", |
| 117 "src/include/libxml/uri.h", | 119 "src/include/libxml/uri.h", |
| 118 "src/include/libxml/valid.h", | 120 "src/include/libxml/valid.h", |
| (...skipping 23 matching lines...) Expand all Loading... |
| 142 "src/list.c", | 144 "src/list.c", |
| 143 "src/parser.c", | 145 "src/parser.c", |
| 144 "src/parserInternals.c", | 146 "src/parserInternals.c", |
| 145 "src/pattern.c", | 147 "src/pattern.c", |
| 146 "src/relaxng.c", | 148 "src/relaxng.c", |
| 147 "src/save.h", | 149 "src/save.h", |
| 148 "src/schematron.c", | 150 "src/schematron.c", |
| 149 "src/threads.c", | 151 "src/threads.c", |
| 150 "src/timsort.h", | 152 "src/timsort.h", |
| 151 "src/tree.c", | 153 "src/tree.c", |
| 154 "src/triodef.h", |
| 155 "src/trionan.h", |
| 152 | 156 |
| 153 #"src/trio.c", | 157 #"src/trio.c", |
| 154 #"src/trio.h", | 158 #"src/trio.h", |
| 155 #"src/triodef.h", | 159 #"src/triodef.h", |
| 156 #"src/trionan.c", | 160 #"src/trionan.c", |
| 157 #"src/trionan.h", | 161 #"src/trionan.h", |
| 158 #"src/triop.h", | 162 #"src/triop.h", |
| 159 #"src/triostr.c", | 163 #"src/triostr.c", |
| 160 #"src/triostr.h", | 164 #"src/triostr.h", |
| 161 "src/uri.c", | 165 "src/uri.c", |
| (...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 201 if (is_mac || is_ios || is_android) { | 205 if (is_mac || is_ios || is_android) { |
| 202 # http://www.xmlsoft.org/threads.html says that this is required when using | 206 # 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 | 207 # libxml from several threads, which can possibly happen in chrome. On |
| 204 # linux, this is picked up by transitivity from pkg-config output from | 208 # linux, this is picked up by transitivity from pkg-config output from |
| 205 # build/linux/system.gyp. | 209 # build/linux/system.gyp. |
| 206 defines = [ "_REENTRANT" ] | 210 defines = [ "_REENTRANT" ] |
| 207 } | 211 } |
| 208 | 212 |
| 209 include_dirs = [ "$os_include" ] | 213 include_dirs = [ "$os_include" ] |
| 210 } | 214 } |
| OLD | NEW |