summaryrefslogtreecommitdiffstats
path: root/third_party/mach_override/mach_override.gyp
blob: bba04de85b0dbe3b3633bfbe75e9010a7e8d1ac8 (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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
# Copyright (c) 2011 The Chromium Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.

{
  'targets': [
  ],
  'conditions': [
    ['OS=="mac" or (OS=="ios" and "<(GENERATOR)"=="ninja")', {
      'targets' : [
        {
          'target_name' : 'libudis86',
          'type': 'static_library',
          'toolsets': ['host', 'target'],
          'defines': [
            'HAVE_ASSERT_H',
            'HAVE_STRING_H',
          ],
          'sources': [
            'libudis86/decode.c',
            'libudis86/decode.h',
            'libudis86/extern.h',
            'libudis86/input.c',
            'libudis86/input.h',
            'libudis86/itab.c',
            'libudis86/itab.h',
            'libudis86/syn-att.c',
            'libudis86/syn-intel.c',
            'libudis86/syn.c',
            'libudis86/syn.h',
            'libudis86/types.h',
            'libudis86/udint.h',
            'libudis86/udis86.c',
            'udis86.h',
          ],
          'sources!': [
            # The syn* files implement formatting for output, which is unused
            # by mach_override. Normally, it would be possible to let dead
            # code stripping get rid of them, but syn.c contains errors.
            # Rather than patching a file that's not relevant, disable it.
            'libudis86/syn-att.c',
            'libudis86/syn-intel.c',
            'libudis86/syn.c',
          ],
          'variables': {
            'clang_warning_flags_unset': [
              # For UD_ASSERT(!"message");
              '-Wstring-conversion',
            ],
          },
        },
        {
          'target_name' : 'mach_override',
          'type': 'static_library',
          'toolsets': ['host', 'target'],
          'dependencies': [
            'libudis86',
          ],
          'sources': [
            'mach_override.c',
            'mach_override.h',
          ],
        },
      ],
    }],
  ],
}