| 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': 'libxml', | 18 'target_name': 'libxml', |
| 19 'type': 'static_library', | 19 'type': 'static_library', |
| 20 'msvs_guid': 'F9810DE8-CBC3-4605-A7B1-ECA2D5292FD7', |
| 20 'sources': [ | 21 'sources': [ |
| 21 'include/libxml/c14n.h', | 22 'include/libxml/c14n.h', |
| 22 'include/libxml/catalog.h', | 23 'include/libxml/catalog.h', |
| 23 'include/libxml/chvalid.h', | 24 'include/libxml/chvalid.h', |
| 24 'include/libxml/debugXML.h', | 25 'include/libxml/debugXML.h', |
| 25 'include/libxml/dict.h', | 26 'include/libxml/dict.h', |
| 26 'include/libxml/DOCBparser.h', | 27 'include/libxml/DOCBparser.h', |
| 27 'include/libxml/encoding.h', | 28 'include/libxml/encoding.h', |
| 28 'include/libxml/entities.h', | 29 'include/libxml/entities.h', |
| 29 'include/libxml/globals.h', | 30 'include/libxml/globals.h', |
| (...skipping 151 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 181 ], | 182 ], |
| 182 'include_dirs': [ | 183 'include_dirs': [ |
| 183 '<(os_include)', | 184 '<(os_include)', |
| 184 ], | 185 ], |
| 185 'dependencies': [ | 186 'dependencies': [ |
| 186 'libxml', | 187 'libxml', |
| 187 ], | 188 ], |
| 188 }, | 189 }, |
| 189 ], | 190 ], |
| 190 } | 191 } |
| OLD | NEW |