aboutsummaryrefslogtreecommitdiffhomepage
path: root/gyp/cityhash.gyp
diff options
context:
space:
mode:
authorGravatar epoger@google.com <epoger@google.com@2bbb7eff-a529-9590-31e7-b0007b416f81>2013-05-08 15:22:36 +0000
committerGravatar epoger@google.com <epoger@google.com@2bbb7eff-a529-9590-31e7-b0007b416f81>2013-05-08 15:22:36 +0000
commite8d08a0fc294f2df7fc1ea074bcad52fc57c91b4 (patch)
tree798f1a35f3e901da800762710f1d5c37bde03636 /gyp/cityhash.gyp
parentaaf7343e16c4bf9f9c6f07968689669fe6ba71d7 (diff)
Roll out r9059 to unbreak bots
git-svn-id: http://skia.googlecode.com/svn/trunk@9060 2bbb7eff-a529-9590-31e7-b0007b416f81
Diffstat (limited to 'gyp/cityhash.gyp')
-rw-r--r--gyp/cityhash.gyp33
1 files changed, 33 insertions, 0 deletions
diff --git a/gyp/cityhash.gyp b/gyp/cityhash.gyp
new file mode 100644
index 0000000000..f35f1f02d3
--- /dev/null
+++ b/gyp/cityhash.gyp
@@ -0,0 +1,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',
+ ],
+ }],
+ ],
+ },
+ ],
+}