blob: d22debb757da2fde4eca90e1b450fe97b40cd559 [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',
djsollen@google.com21830d92012-08-07 19:49:41 +000020 '../src/core',
epoger@google.comae85aea2011-05-31 13:50:51 +000021 ],
epoger@google.comae85aea2011-05-31 13:50:51 +000022 'direct_dependent_settings': {
23 'include_dirs': [
24 '../include/effects',
25 ],
26 },
bsalomon@google.com202a51b2012-09-04 14:37:12 +000027 'sources': [
28 'effects.gypi', # Makes the gypi appear in IDEs (but does not modify the build).
29 ],
bsalomon@google.comcf8fb1f2012-08-02 14:03:32 +000030 'conditions': [
31 ['skia_gpu == 1', {
32 'include_dirs': [
djsollen@google.com52f02972013-06-03 12:10:19 +000033 '../include/gpu',
bsalomon@google.comcf8fb1f2012-08-02 14:03:32 +000034 '../src/gpu',
35 ],
bsalomon@google.comcf8fb1f2012-08-02 14:03:32 +000036 }],
borenet@google.com7ef39292012-07-18 14:59:54 +000037 ],
epoger@google.comae85aea2011-05-31 13:50:51 +000038 },
39 ],
40}
41
42# Local Variables:
43# tab-width:2
44# indent-tabs-mode:nil
45# End:
46# vim: set expandtab tabstop=2 shiftwidth=2: