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_posix == 1 and OS != "mac"', { | 10 ['os_posix == 1 and OS != "mac"', { |
(...skipping 21 matching lines...) Expand all Loading... |
32 'link_settings': { | 32 'link_settings': { |
33 'ldflags': [ | 33 'ldflags': [ |
34 '<!@(pkg-config --libs-only-L --libs-only-other libxml-2.0)', | 34 '<!@(pkg-config --libs-only-L --libs-only-other libxml-2.0)', |
35 ], | 35 ], |
36 'libraries': [ | 36 'libraries': [ |
37 '<!@(pkg-config --libs-only-l libxml-2.0)', | 37 '<!@(pkg-config --libs-only-l libxml-2.0)', |
38 ], | 38 ], |
39 }, | 39 }, |
40 }, { # else: os_posix != 1 or OS == "mac" or ! use_system_libxml | 40 }, { # else: os_posix != 1 or OS == "mac" or ! use_system_libxml |
41 'type': 'static_library', | 41 'type': 'static_library', |
42 'msvs_guid': 'F9810DE8-CBC3-4605-A7B1-ECA2D5292FD7', | |
43 'sources': [ | 42 'sources': [ |
44 'linux/config.h', | 43 'linux/config.h', |
45 'linux/include/libxml/xmlversion.h', | 44 'linux/include/libxml/xmlversion.h', |
46 'mac/config.h', | 45 'mac/config.h', |
47 'mac/include/libxml/xmlversion.h', | 46 'mac/include/libxml/xmlversion.h', |
48 'src/include/libxml/c14n.h', | 47 'src/include/libxml/c14n.h', |
49 'src/include/libxml/catalog.h', | 48 'src/include/libxml/catalog.h', |
50 'src/include/libxml/chvalid.h', | 49 'src/include/libxml/chvalid.h', |
51 'src/include/libxml/debugXML.h', | 50 'src/include/libxml/debugXML.h', |
52 'src/include/libxml/dict.h', | 51 'src/include/libxml/dict.h', |
(...skipping 145 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
198 ], | 197 ], |
199 }, | 198 }, |
200 ], | 199 ], |
201 } | 200 } |
202 | 201 |
203 # Local Variables: | 202 # Local Variables: |
204 # tab-width:2 | 203 # tab-width:2 |
205 # indent-tabs-mode:nil | 204 # indent-tabs-mode:nil |
206 # End: | 205 # End: |
207 # vim: set expandtab tabstop=2 shiftwidth=2: | 206 # vim: set expandtab tabstop=2 shiftwidth=2: |
OLD | NEW |