blob: 2402ed1c441073bd1b5c0c25ca8809b6da062c6e [file] [log] [blame]
scroggo3e562272015-03-25 10:22:41 -07001# Copyright 2015 Google Inc.
2#
3# Use of this source code is governed by a BSD-style license that can be
4# found in the LICENSE file.
scroggo@google.comf1754ec2013-06-28 21:32:00 +00005# Gyp file for effects
epoger@google.comae85aea2011-05-31 13:50:51 +00006{
epoger@google.comae85aea2011-05-31 13:50:51 +00007 'targets': [
8 {
9 'target_name': 'effects',
borenet@google.comefb1d772012-10-10 19:45:51 +000010 'product_name': 'skia_effects',
epoger@google.comae85aea2011-05-31 13:50:51 +000011 'type': 'static_library',
borenet@google.comefb1d772012-10-10 19:45:51 +000012 'standalone_static_library': 1,
bungeman@google.comb8f36552013-07-22 14:39:45 +000013 'dependencies': [
14 'core.gyp:*',
15 'images.gyp:*',
tomhudsonf7edcde2015-03-23 12:51:20 -070016 'utils.gyp:utils',
bungeman@google.comb8f36552013-07-22 14:39:45 +000017 ],
senorblanco@chromium.orgf6100c32012-08-20 20:56:26 +000018 'includes': [
19 'effects.gypi',
20 ],
epoger@google.comae85aea2011-05-31 13:50:51 +000021 'include_dirs': [
epoger@google.comae85aea2011-05-31 13:50:51 +000022 '../include/effects',
robertphillips188d44c2016-02-01 04:54:14 -080023 '../include/client/android',
mtkleincd1f2da2015-07-28 08:55:14 -070024 '../include/private',
humper@google.com3aad3b02013-09-04 19:23:53 +000025 '../src/effects',
senorblanco@chromium.org7a47ad32013-10-30 21:57:04 +000026 '../src/opts',
djsollen@google.com21830d92012-08-07 19:49:41 +000027 '../src/core',
epoger@google.comae85aea2011-05-31 13:50:51 +000028 ],
epoger@google.comae85aea2011-05-31 13:50:51 +000029 'direct_dependent_settings': {
30 'include_dirs': [
31 '../include/effects',
robertphillips188d44c2016-02-01 04:54:14 -080032 '../include/client/android',
epoger@google.comae85aea2011-05-31 13:50:51 +000033 ],
34 },
bsalomon@google.com202a51b2012-09-04 14:37:12 +000035 'sources': [
36 'effects.gypi', # Makes the gypi appear in IDEs (but does not modify the build).
37 ],
bsalomon@google.comcf8fb1f2012-08-02 14:03:32 +000038 'conditions': [
39 ['skia_gpu == 1', {
40 'include_dirs': [
djsollen@google.com52f02972013-06-03 12:10:19 +000041 '../include/gpu',
bsalomon@google.comcf8fb1f2012-08-02 14:03:32 +000042 '../src/gpu',
43 ],
bsalomon@google.comcf8fb1f2012-08-02 14:03:32 +000044 }],
borenet@google.com7ef39292012-07-18 14:59:54 +000045 ],
epoger@google.comae85aea2011-05-31 13:50:51 +000046 },
47 ],
48}