aboutsummaryrefslogtreecommitdiffhomepage
path: root/gyp/cityhash.gyp
blob: f35f1f02d3edd472bb76c1c2de45483ed018134a (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
{
  'variables': {
    'skia_warnings_as_errors': 0,
  },
  'targets': [
    {
      'target_name': 'cityhash',
      'type': 'static_library',
      'standalone_static_library': 1,
      'include_dirs': [
        '../include/config',
        '../include/core',
        '../src/utils/cityhash',
        '../third_party/externals/cityhash/src',
      ],
      'sources': [
        '../third_party/externals/cityhash/src/city.cc',
      ],
      'direct_dependent_settings': {
        'include_dirs': [
          '../third_party/externals/cityhash/src',
        ],
      },
      'conditions': [
        [ 'skia_os == "android"', {
          'cflags!': [
            '-Wall',
          ],
        }],
      ],
    },
  ],
}