aboutsummaryrefslogtreecommitdiffhomepage
path: root/gyp/expat.gyp
blob: b70632ace4979cf5aba2955042ff111244681011 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
# 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': 'none',
      'conditions': [
        [ 'skia_android_framework', {
            'dependencies':              [ 'android_deps.gyp:expat_android' ],
            'export_dependent_settings': [ 'android_deps.gyp:expat_android' ],
        },{
            'dependencies':              [ 'expat.gyp:expat_static' ],
            'export_dependent_settings': [ 'expat.gyp:expat_static' ],
        }]
      ]
    },
    {
        'target_name': 'expat_static',
        'type': 'static_library',
        'cflags': [ '-Wno-missing-field-initializers' ],
        'xcode_settings': { 'WARNING_CFLAGS': [ '-Wno-missing-field-initializers', ], },
        'msvs_disabled_warnings': [4244],
        'defines': [
            'HAVE_EXPAT_CONFIG_H',
            'XML_STATIC', # Compile for static linkage.
        ],
        'include_dirs': [
            '../third_party/externals/expat',
        ],
        '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',
            ],
            'defines': [
                'XML_STATIC',  # Tell dependants to expect static linkage.
            ],
        },
    }]
}