2013-06-28 21:32:00 +00:00
|
|
|
# Gyp file for effects
|
2011-05-31 13:50:51 +00:00
|
|
|
{
|
|
|
|
'targets': [
|
|
|
|
{
|
|
|
|
'target_name': 'effects',
|
2012-10-10 19:45:51 +00:00
|
|
|
'product_name': 'skia_effects',
|
2011-05-31 13:50:51 +00:00
|
|
|
'type': 'static_library',
|
2012-10-10 19:45:51 +00:00
|
|
|
'standalone_static_library': 1,
|
2013-07-22 14:39:45 +00:00
|
|
|
'dependencies': [
|
|
|
|
'core.gyp:*',
|
|
|
|
'images.gyp:*',
|
|
|
|
'utils.gyp:*',
|
|
|
|
],
|
2012-08-20 20:56:26 +00:00
|
|
|
'includes': [
|
|
|
|
'effects.gypi',
|
|
|
|
],
|
2011-05-31 13:50:51 +00:00
|
|
|
'include_dirs': [
|
|
|
|
'../include/effects',
|
2013-09-04 19:23:53 +00:00
|
|
|
'../src/effects',
|
2013-10-30 21:57:04 +00:00
|
|
|
'../src/opts',
|
2012-08-07 19:49:41 +00:00
|
|
|
'../src/core',
|
2011-05-31 13:50:51 +00:00
|
|
|
],
|
|
|
|
'direct_dependent_settings': {
|
|
|
|
'include_dirs': [
|
|
|
|
'../include/effects',
|
|
|
|
],
|
|
|
|
},
|
2012-09-04 14:37:12 +00:00
|
|
|
'sources': [
|
|
|
|
'effects.gypi', # Makes the gypi appear in IDEs (but does not modify the build).
|
|
|
|
],
|
2012-08-02 14:03:32 +00:00
|
|
|
'conditions': [
|
|
|
|
['skia_gpu == 1', {
|
|
|
|
'include_dirs': [
|
2013-06-03 12:10:19 +00:00
|
|
|
'../include/gpu',
|
2012-08-02 14:03:32 +00:00
|
|
|
'../src/gpu',
|
|
|
|
],
|
|
|
|
}],
|
2012-07-18 14:59:54 +00:00
|
|
|
],
|
2011-05-31 13:50:51 +00:00
|
|
|
},
|
|
|
|
],
|
|
|
|
}
|
|
|
|
|
|
|
|
# Local Variables:
|
|
|
|
# tab-width:2
|
|
|
|
# indent-tabs-mode:nil
|
|
|
|
# End:
|
|
|
|
# vim: set expandtab tabstop=2 shiftwidth=2:
|