skia2/gyp/shapeops_tool.gyp
djsollen@google.com 52f0297aaf Prepare skia for shared library build on android
This reapplies revision 9378 after the buildbot has been updated.

R=borenet@google.com, djsollen@google.com

Review URL: https://codereview.chromium.org/15855006

git-svn-id: http://skia.googlecode.com/svn/trunk@9395 2bbb7eff-a529-9590-31e7-b0007b416f81
2013-06-03 12:10:19 +00:00

38 lines
723 B
Python

# GYP file to build unit tests.
{
'includes': [
'apptype_console.gypi',
'common.gypi',
],
'targets': [
{
'target_name': 'addTest',
'type': 'executable',
'include_dirs' : [
'../src/core',
],
'sources': [
'../experimental/Intersection/AddTestOutput/main.cpp',
],
'dependencies': [
'skia_lib.gyp:skia_lib',
'experimental.gyp:experimental',
'pdf.gyp:pdf',
],
'conditions': [
[ 'skia_gpu == 1', {
'include_dirs': [
'../src/gpu',
],
}],
],
},
],
}
# Local Variables:
# tab-width:2
# indent-tabs-mode:nil
# End:
# vim: set expandtab tabstop=2 shiftwidth=2: