skia2/gyp/effects.gyp
borenet@google.com de938a496c Fix Android build of render_pictures
Review URL: https://codereview.appspot.com/6501113

git-svn-id: http://skia.googlecode.com/svn/trunk@5462 2bbb7eff-a529-9590-31e7-b0007b416f81
2012-09-10 14:41:26 +00:00

44 lines
872 B
Python

{
'targets': [
{
'target_name': 'effects',
'type': 'static_library',
'includes': [
'effects.gypi',
],
'include_dirs': [
'../include/effects',
'../src/core',
],
'direct_dependent_settings': {
'include_dirs': [
'../include/effects',
],
},
'dependencies': [
'core.gyp:core',
],
'sources': [
'effects.gypi', # Makes the gypi appear in IDEs (but does not modify the build).
],
'conditions': [
['skia_gpu == 1', {
'include_dirs': [
'../src/gpu',
],
'dependencies': [
'gpu.gyp:gr',
'gpu.gyp:skgr',
],
}],
],
},
],
}
# Local Variables:
# tab-width:2
# indent-tabs-mode:nil
# End:
# vim: set expandtab tabstop=2 shiftwidth=2: