OLD | NEW |
1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2012 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 { | 5 { |
6 'variables': { | 6 'variables': { |
7 'conditions': [ | 7 'conditions': [ |
8 # Define an "os_include" variable that points at the OS-specific generated | 8 # Define an "os_include" variable that points at the OS-specific generated |
9 # headers. These were generated by running the configure script offline. | 9 # headers. These were generated by running the configure script offline. |
10 ['os_posix == 1 and OS != "mac" and OS != "ios"', { | 10 ['os_posix == 1 and OS != "mac" and OS != "ios"', { |
(...skipping 114 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
125 'src/include/libxml/xmlschemastypes.h', | 125 'src/include/libxml/xmlschemastypes.h', |
126 'src/include/libxml/xmlstring.h', | 126 'src/include/libxml/xmlstring.h', |
127 'src/include/libxml/xmlunicode.h', | 127 'src/include/libxml/xmlunicode.h', |
128 'src/include/libxml/xmlwriter.h', | 128 'src/include/libxml/xmlwriter.h', |
129 'src/include/libxml/xpath.h', | 129 'src/include/libxml/xpath.h', |
130 'src/include/libxml/xpathInternals.h', | 130 'src/include/libxml/xpathInternals.h', |
131 'src/include/libxml/xpointer.h', | 131 'src/include/libxml/xpointer.h', |
132 'src/include/win32config.h', | 132 'src/include/win32config.h', |
133 'src/include/wsockcompat.h', | 133 'src/include/wsockcompat.h', |
134 'src/acconfig.h', | 134 'src/acconfig.h', |
| 135 'src/buf.c', |
| 136 'src/buf.h', |
135 'src/c14n.c', | 137 'src/c14n.c', |
136 'src/catalog.c', | 138 'src/catalog.c', |
137 'src/chvalid.c', | 139 'src/chvalid.c', |
138 'src/debugXML.c', | 140 'src/debugXML.c', |
139 'src/dict.c', | 141 'src/dict.c', |
140 'src/DOCBparser.c', | 142 'src/DOCBparser.c', |
141 'src/elfgcchack.h', | 143 'src/elfgcchack.h', |
142 'src/encoding.c', | 144 'src/encoding.c', |
143 'src/entities.c', | 145 'src/entities.c', |
144 'src/error.c', | 146 'src/error.c', |
(...skipping 111 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
256 }], | 258 }], |
257 ], | 259 ], |
258 }], | 260 }], |
259 ['OS == "ios"', { | 261 ['OS == "ios"', { |
260 'toolsets': ['host', 'target'], | 262 'toolsets': ['host', 'target'], |
261 }], | 263 }], |
262 ], | 264 ], |
263 }, | 265 }, |
264 ], | 266 ], |
265 } | 267 } |
OLD | NEW |