| 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'}], |
| 11 ], | 11 ], |
| 12 }, | 12 }, |
| 13 'includes': [ | 13 'includes': [ |
| 14 '../../build/common.gypi', | 14 '../../build/common.gypi', |
| 15 ], | 15 ], |
| 16 'targets': [ | 16 'targets': [ |
| 17 { | 17 { |
| 18 'target_name': 'libxslt', | 18 'target_name': 'libxslt', |
| 19 'type': 'static_library', | 19 'type': 'static_library', |
| 20 'msvs_guid': 'F9810DE8-CBC3-4605-A7B1-ECA2D5292FD7', |
| 20 'sources': [ | 21 'sources': [ |
| 21 'libxslt/attributes.c', | 22 'libxslt/attributes.c', |
| 22 'libxslt/attributes.h', | 23 'libxslt/attributes.h', |
| 23 'libxslt/attrvt.c', | 24 'libxslt/attrvt.c', |
| 24 'libxslt/documents.c', | 25 'libxslt/documents.c', |
| 25 'libxslt/documents.h', | 26 'libxslt/documents.h', |
| 26 'libxslt/extensions.c', | 27 'libxslt/extensions.c', |
| 27 'libxslt/extensions.h', | 28 'libxslt/extensions.h', |
| 28 'libxslt/extra.c', | 29 'libxslt/extra.c', |
| 29 'libxslt/extra.h', | 30 'libxslt/extra.h', |
| (...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 82 'include_dirs': [ | 83 'include_dirs': [ |
| 83 '.', | 84 '.', |
| 84 ], | 85 ], |
| 85 }, | 86 }, |
| 86 'conditions': [ | 87 'conditions': [ |
| 87 ['OS!="win"', {'product_name': 'xslt'}], | 88 ['OS!="win"', {'product_name': 'xslt'}], |
| 88 ], | 89 ], |
| 89 }, | 90 }, |
| 90 ], | 91 ], |
| 91 } | 92 } |
| OLD | NEW |