blob: f35f1f02d3edd472bb76c1c2de45483ed018134a [file] [log] [blame]
epoger@google.come8d08a02013-05-08 15:22:36 +00001{
2 'variables': {
3 'skia_warnings_as_errors': 0,
4 },
5 'targets': [
6 {
7 'target_name': 'cityhash',
8 'type': 'static_library',
9 'standalone_static_library': 1,
10 'include_dirs': [
11 '../include/config',
12 '../include/core',
13 '../src/utils/cityhash',
14 '../third_party/externals/cityhash/src',
15 ],
16 'sources': [
17 '../third_party/externals/cityhash/src/city.cc',
18 ],
19 'direct_dependent_settings': {
20 'include_dirs': [
21 '../third_party/externals/cityhash/src',
22 ],
23 },
24 'conditions': [
25 [ 'skia_os == "android"', {
26 'cflags!': [
27 '-Wall',
28 ],
29 }],
30 ],
31 },
32 ],
33}