OLD | NEW |
1 # Copyright (c) 2009 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2009 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=="linux" or OS=="freebsd" or OS=="openbsd" or OS=="solaris"', { | 10 ['OS=="linux" or OS=="freebsd" or OS=="openbsd" or OS=="solaris"', { |
(...skipping 76 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
87 'src/include/libxml/xmlschemas.h', | 87 'src/include/libxml/xmlschemas.h', |
88 'src/include/libxml/xmlschemastypes.h', | 88 'src/include/libxml/xmlschemastypes.h', |
89 'src/include/libxml/xmlstring.h', | 89 'src/include/libxml/xmlstring.h', |
90 'src/include/libxml/xmlunicode.h', | 90 'src/include/libxml/xmlunicode.h', |
91 'src/include/libxml/xmlwriter.h', | 91 'src/include/libxml/xmlwriter.h', |
92 'src/include/libxml/xpath.h', | 92 'src/include/libxml/xpath.h', |
93 'src/include/libxml/xpathInternals.h', | 93 'src/include/libxml/xpathInternals.h', |
94 'src/include/libxml/xpointer.h', | 94 'src/include/libxml/xpointer.h', |
95 'src/include/win32config.h', | 95 'src/include/win32config.h', |
96 'src/include/wsockcompat.h', | 96 'src/include/wsockcompat.h', |
97 'src/win32/config.h', | |
98 'src/win32/include/libxml/xmlversion.h', | |
99 'src/acconfig.h', | 97 'src/acconfig.h', |
100 'src/c14n.c', | 98 'src/c14n.c', |
101 'src/catalog.c', | 99 'src/catalog.c', |
102 'src/chvalid.c', | 100 'src/chvalid.c', |
103 'src/debugXML.c', | 101 'src/debugXML.c', |
104 'src/dict.c', | 102 'src/dict.c', |
105 'src/DOCBparser.c', | 103 'src/DOCBparser.c', |
106 'src/elfgcchack.h', | 104 'src/elfgcchack.h', |
107 'src/encoding.c', | 105 'src/encoding.c', |
108 'src/entities.c', | 106 'src/entities.c', |
(...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
143 'src/xmlreader.c', | 141 'src/xmlreader.c', |
144 'src/xmlregexp.c', | 142 'src/xmlregexp.c', |
145 'src/xmlsave.c', | 143 'src/xmlsave.c', |
146 'src/xmlschemas.c', | 144 'src/xmlschemas.c', |
147 'src/xmlschemastypes.c', | 145 'src/xmlschemastypes.c', |
148 'src/xmlstring.c', | 146 'src/xmlstring.c', |
149 'src/xmlunicode.c', | 147 'src/xmlunicode.c', |
150 'src/xmlwriter.c', | 148 'src/xmlwriter.c', |
151 'src/xpath.c', | 149 'src/xpath.c', |
152 'src/xpointer.c', | 150 'src/xpointer.c', |
| 151 'win32/config.h', |
| 152 'win32/include/libxml/xmlversion.h', |
153 ], | 153 ], |
154 'defines': [ | 154 'defines': [ |
155 # Define LIBXML_STATIC as nothing to match how libxml.h | 155 # Define LIBXML_STATIC as nothing to match how libxml.h |
156 # (an internal header) defines LIBXML_STATIC, otherwise | 156 # (an internal header) defines LIBXML_STATIC, otherwise |
157 # we get the macro redefined warning from GCC. (-DFOO | 157 # we get the macro redefined warning from GCC. (-DFOO |
158 # defines the macro FOO as 1.) | 158 # defines the macro FOO as 1.) |
159 'LIBXML_STATIC=', | 159 'LIBXML_STATIC=', |
160 ], | 160 ], |
161 'include_dirs': [ | 161 'include_dirs': [ |
162 '<(os_include)', | 162 '<(os_include)', |
(...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
199 ], | 199 ], |
200 }, | 200 }, |
201 ], | 201 ], |
202 } | 202 } |
203 | 203 |
204 # Local Variables: | 204 # Local Variables: |
205 # tab-width:2 | 205 # tab-width:2 |
206 # indent-tabs-mode:nil | 206 # indent-tabs-mode:nil |
207 # End: | 207 # End: |
208 # vim: set expandtab tabstop=2 shiftwidth=2: | 208 # vim: set expandtab tabstop=2 shiftwidth=2: |
OLD | NEW |