mtklein | 4e79f33 | 2016-02-07 13:31:23 -0800 | [diff] [blame] | 1 | # Copyright 2016 Google Inc. |
| 2 | # |
| 3 | # Use of this source code is governed by a BSD-style license that can be |
| 4 | # found in the LICENSE file. |
| 5 | |
| 6 | # Build expat from source. |
mtklein | 4e79f33 | 2016-02-07 13:31:23 -0800 | [diff] [blame] | 7 | |
| 8 | { |
| 9 | 'targets': [{ |
| 10 | 'target_name': 'expat', |
| 11 | 'type': 'static_library', |
fmalita | 771a190 | 2016-07-14 14:02:24 -0700 | [diff] [blame^] | 12 | 'cflags': [ '-Wno-missing-field-initializers' ], |
| 13 | 'xcode_settings': { 'WARNING_CFLAGS': [ '-Wno-missing-field-initializers', ], }, |
| 14 | 'msvs_disabled_warnings': [4244], |
| 15 | 'defines': [ 'HAVE_EXPAT_CONFIG_H' ], |
| 16 | 'include_dirs': [ |
| 17 | '../third_party/externals/expat', |
| 18 | ], |
mtklein | 4e79f33 | 2016-02-07 13:31:23 -0800 | [diff] [blame] | 19 | 'sources': [ |
| 20 | '../third_party/externals/expat/lib/xmlparse.c', |
| 21 | '../third_party/externals/expat/lib/xmlrole.c', |
| 22 | '../third_party/externals/expat/lib/xmltok.c', |
| 23 | ], |
| 24 | 'direct_dependent_settings': { |
| 25 | 'include_dirs': [ '../third_party/externals/expat/lib' ], |
| 26 | }, |
| 27 | }] |
| 28 | } |