blob: 190b4f3816a1f282fc95f7bd5f804509a0449e3f [file] [log] [blame]
# GYP file to build pathops unit tests.
{
'includes': [
'apptype_console.gypi',
],
'targets': [
{
'target_name': 'pathops_unittest',
'type': 'executable',
'includes': [
'pathops_unittest.gypi',
],
'dependencies': [ 'tools.gyp:crash_handler' ],
'sources': [
'../tests/PathOpsAngleIdeas.cpp',
'../tests/PathOpsCubicLineIntersectionIdeas.cpp',
'../tests/PathOpsDebug.cpp',
'../tests/PathOpsOpLoopThreadedTest.cpp',
'../tests/PathOpsSkpClipTest.cpp',
'../tests/skia_test.cpp',
],
'conditions': [
[ 'skia_android_framework == 1', {
'libraries': [
'-lskia',
],
'libraries!': [
'-lz',
'-llog',
],
}],
[ 'skia_gpu == 1', {
'include_dirs': [
'../src/gpu',
],
}],
],
},
],
}