aboutsummaryrefslogtreecommitdiffhomepage
path: root/gyp/target_defaults.gypi
blob: 5c512fb342662949f0d6c34010a9fd19d9714fb8 (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
{
  'target_defaults': {
    'configurations': {
      'Debug': {
        'defines': [
          'SK_DEBUG',
          'GR_DEBUG=1',
        ],
        'msvs_settings': {
           'VCLinkerTool': {
             'GenerateDebugInformation': 'true',
            },
         },
      },
      'Release': {
        'defines': [
          'SK_RELEASE',
          'GR_RELEASE=1',
        ],
      },
    },
    'conditions': [
      [ 'OS == "linux" or OS == "freebsd" or OS == "openbsd" or OS == "solaris"', {
        'include_dirs' : [
          '/usr/include/freetype2',
        ],
      }],
      [ 'OS == "mac"', {
        'defines': [
          'SK_BUILD_FOR_MAC',
        ],
      }],
      [ 'OS == "win"', {
        'defines': [
          'SK_BUILD_FOR_WIN32',
          'SK_IGNORE_STDINT_DOT_H',
        ],
      }],
      [ 'OS == "linux"', {
        'defines': [
          'SK_SAMPLES_FOR_X',
          'SK_BUILD_FOR_UNIX',
        ],
      }],
    ],
    'direct_dependent_settings': {
      'conditions': [
        [ 'OS == "mac"', {
          'defines': [
            'SK_BUILD_FOR_MAC',
          ],
        }],
        [ 'OS == "win"', {
          'defines': [
            'SK_BUILD_FOR_WIN32',
          ],
        }],
      ],
    },
  },
}

# Local Variables:
# tab-width:2
# indent-tabs-mode:nil
# End:
# vim: set expandtab tabstop=2 shiftwidth=2: