blob: 63b86365009bde06c43b584cc15ae123269f9e1d [file] [log] [blame]
scroggo@google.comf1754ec2013-06-28 21:32:00 +00001# Gyp file for effects
epoger@google.comae85aea2011-05-31 13:50:51 +00002{
epoger@google.comae85aea2011-05-31 13:50:51 +00003 'targets': [
4 {
5 'target_name': 'effects',
borenet@google.comefb1d772012-10-10 19:45:51 +00006 'product_name': 'skia_effects',
epoger@google.comae85aea2011-05-31 13:50:51 +00007 'type': 'static_library',
borenet@google.comefb1d772012-10-10 19:45:51 +00008 'standalone_static_library': 1,
bungeman@google.comb8f36552013-07-22 14:39:45 +00009 'dependencies': [
10 'core.gyp:*',
11 'images.gyp:*',
12 'utils.gyp:*',
13 ],
senorblanco@chromium.orgf6100c32012-08-20 20:56:26 +000014 'includes': [
15 'effects.gypi',
16 ],
epoger@google.comae85aea2011-05-31 13:50:51 +000017 'include_dirs': [
epoger@google.comae85aea2011-05-31 13:50:51 +000018 '../include/effects',
humper@google.com3aad3b02013-09-04 19:23:53 +000019 '../src/effects',
senorblanco@chromium.org7a47ad32013-10-30 21:57:04 +000020 '../src/opts',
djsollen@google.com21830d92012-08-07 19:49:41 +000021 '../src/core',
epoger@google.comae85aea2011-05-31 13:50:51 +000022 ],
epoger@google.comae85aea2011-05-31 13:50:51 +000023 'direct_dependent_settings': {
24 'include_dirs': [
25 '../include/effects',
26 ],
27 },
bsalomon@google.com202a51b2012-09-04 14:37:12 +000028 'sources': [
29 'effects.gypi', # Makes the gypi appear in IDEs (but does not modify the build).
30 ],
bsalomon@google.comcf8fb1f2012-08-02 14:03:32 +000031 'conditions': [
32 ['skia_gpu == 1', {
33 'include_dirs': [
djsollen@google.com52f02972013-06-03 12:10:19 +000034 '../include/gpu',
bsalomon@google.comcf8fb1f2012-08-02 14:03:32 +000035 '../src/gpu',
36 ],
bsalomon@google.comcf8fb1f2012-08-02 14:03:32 +000037 }],
borenet@google.com7ef39292012-07-18 14:59:54 +000038 ],
epoger@google.comae85aea2011-05-31 13:50:51 +000039 },
40 ],
41}