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 ['OS=="linux"', {'os_include': 'linux'}], | 8 ['OS=="linux"', {'os_include': 'linux'}], |
9 ['OS=="mac"', {'os_include': 'mac'}], | 9 ['OS=="mac"', {'os_include': 'mac'}], |
10 ['OS=="win"', {'os_include': 'win32'}], | 10 ['OS=="win"', {'os_include': 'win32'}], |
(...skipping 13 matching lines...) Expand all Loading... |
24 'cflags': [ | 24 'cflags': [ |
25 '<!@(python ../../build/linux/pkg_config_wrapper.py --cflags libxm
l-2.0)', | 25 '<!@(python ../../build/linux/pkg_config_wrapper.py --cflags libxm
l-2.0)', |
26 ], | 26 ], |
27 }, | 27 }, |
28 'link_settings': { | 28 'link_settings': { |
29 'libraries': [ | 29 'libraries': [ |
30 '<!@(python ../../build/linux/pkg_config_wrapper.py --libs libxml-
2.0)', | 30 '<!@(python ../../build/linux/pkg_config_wrapper.py --libs libxml-
2.0)', |
31 ], | 31 ], |
32 }, | 32 }, |
33 }, { # else: OS != "linux" or ! use_system_libxml | 33 }, { # else: OS != "linux" or ! use_system_libxml |
34 'type': 'static_library', | 34 'type': '<(library)', |
35 'msvs_guid': 'F9810DE8-CBC3-4605-A7B1-ECA2D5292FD7', | 35 'msvs_guid': 'F9810DE8-CBC3-4605-A7B1-ECA2D5292FD7', |
36 'sources': [ | 36 'sources': [ |
37 'include/libxml/c14n.h', | 37 'include/libxml/c14n.h', |
38 'include/libxml/catalog.h', | 38 'include/libxml/catalog.h', |
39 'include/libxml/chvalid.h', | 39 'include/libxml/chvalid.h', |
40 'include/libxml/debugXML.h', | 40 'include/libxml/debugXML.h', |
41 'include/libxml/dict.h', | 41 'include/libxml/dict.h', |
42 'include/libxml/DOCBparser.h', | 42 'include/libxml/DOCBparser.h', |
43 'include/libxml/encoding.h', | 43 'include/libxml/encoding.h', |
44 'include/libxml/entities.h', | 44 'include/libxml/entities.h', |
(...skipping 172 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
217 'link_settings': { | 217 'link_settings': { |
218 'libraries': [ | 218 'libraries': [ |
219 '-lm', | 219 '-lm', |
220 ], | 220 ], |
221 }, | 221 }, |
222 }], | 222 }], |
223 ], | 223 ], |
224 }, | 224 }, |
225 ], | 225 ], |
226 } | 226 } |
OLD | NEW |