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 libxs
lt)', | 25 '<!@(python ../../build/linux/pkg_config_wrapper.py --cflags libxs
lt)', |
26 ], | 26 ], |
27 }, | 27 }, |
28 'link_settings': { | 28 'link_settings': { |
29 'libraries': [ | 29 'libraries': [ |
30 '<!@(python ../../build/linux/pkg_config_wrapper.py --libs libxslt
)', | 30 '<!@(python ../../build/linux/pkg_config_wrapper.py --libs libxslt
)', |
31 ], | 31 ], |
32 }, | 32 }, |
33 }, { # else: OS != "linux" or ! use_system_libxslt | 33 }, { # else: OS != "linux" or ! use_system_libxslt |
34 'type': 'static_library', | 34 'type': '<(library)', |
35 'msvs_guid': 'FC0E1FD0-5DD7-4041-A1C9-CD3C376E4EED', | 35 'msvs_guid': 'FC0E1FD0-5DD7-4041-A1C9-CD3C376E4EED', |
36 'sources': [ | 36 'sources': [ |
37 'libxslt/attributes.c', | 37 'libxslt/attributes.c', |
38 'libxslt/attributes.h', | 38 'libxslt/attributes.h', |
39 'libxslt/attrvt.c', | 39 'libxslt/attrvt.c', |
40 'libxslt/documents.c', | 40 'libxslt/documents.c', |
41 'libxslt/documents.h', | 41 'libxslt/documents.h', |
42 'libxslt/extensions.c', | 42 'libxslt/extensions.c', |
43 'libxslt/extensions.h', | 43 'libxslt/extensions.h', |
44 'libxslt/extra.c', | 44 'libxslt/extra.c', |
(...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
100 ], | 100 ], |
101 }, | 101 }, |
102 'conditions': [ | 102 'conditions': [ |
103 ['OS!="win"', {'product_name': 'xslt'}], | 103 ['OS!="win"', {'product_name': 'xslt'}], |
104 ], | 104 ], |
105 }], | 105 }], |
106 ], | 106 ], |
107 }, | 107 }, |
108 ], | 108 ], |
109 } | 109 } |
OLD | NEW |