2016-02-07 21:31:23 +00:00
|
|
|
# Copyright 2016 Google Inc.
|
|
|
|
#
|
|
|
|
# Use of this source code is governed by a BSD-style license that can be
|
|
|
|
# found in the LICENSE file.
|
|
|
|
|
|
|
|
# Build expat from source.
|
|
|
|
|
|
|
|
{
|
|
|
|
'targets': [{
|
|
|
|
'target_name': 'expat',
|
|
|
|
'type': 'static_library',
|
2016-07-14 21:02:24 +00:00
|
|
|
'cflags': [ '-Wno-missing-field-initializers' ],
|
|
|
|
'xcode_settings': { 'WARNING_CFLAGS': [ '-Wno-missing-field-initializers', ], },
|
|
|
|
'msvs_disabled_warnings': [4244],
|
|
|
|
'defines': [ 'HAVE_EXPAT_CONFIG_H' ],
|
|
|
|
'include_dirs': [
|
|
|
|
'../third_party/externals/expat',
|
|
|
|
],
|
2016-02-07 21:31:23 +00:00
|
|
|
'sources': [
|
|
|
|
'../third_party/externals/expat/lib/xmlparse.c',
|
|
|
|
'../third_party/externals/expat/lib/xmlrole.c',
|
|
|
|
'../third_party/externals/expat/lib/xmltok.c',
|
|
|
|
],
|
|
|
|
'direct_dependent_settings': {
|
|
|
|
'include_dirs': [ '../third_party/externals/expat/lib' ],
|
|
|
|
},
|
|
|
|
}]
|
|
|
|
}
|