blob: d3771495348028469b669dbc92619200e2220b5e [file] [log] [blame]
scroggo3e562272015-03-25 10:22:41 -07001# Copyright 2015 Google Inc.
2#
3# Use of this source code is governed by a BSD-style license that can be
4# found in the LICENSE file.
caryclarka8d2ffb2014-06-24 07:55:11 -07005# Common gypi for pathops unit tests.
caryclark@google.com7abfa492013-04-12 11:59:41 +00006{
caryclarka8d2ffb2014-06-24 07:55:11 -07007 'include_dirs': [
8 '../src/core',
9 '../src/effects',
10 '../src/lazy',
11 '../src/pathops',
12 '../src/pipe/utils',
13 '../src/utils',
14 ],
15 'dependencies': [
16 'flags.gyp:flags',
17 'skia_lib.gyp:skia_lib',
18 'tools.gyp:resources',
19 ],
caryclark@google.com7abfa492013-04-12 11:59:41 +000020 'sources': [
caryclarka8d2ffb2014-06-24 07:55:11 -070021 '../tests/Test.cpp',
22 '../tests/Test.h',
23
caryclark@google.comad65a3e2013-04-15 19:13:59 +000024 '../tests/PathOpsAngleTest.cpp',
caryclark@google.com7abfa492013-04-12 11:59:41 +000025 '../tests/PathOpsBoundsTest.cpp',
26 '../tests/PathOpsCubicIntersectionTest.cpp',
27 '../tests/PathOpsCubicIntersectionTestData.cpp',
28 '../tests/PathOpsCubicLineIntersectionTest.cpp',
caryclark@google.coma5e55922013-05-07 18:51:31 +000029 '../tests/PathOpsCubicQuadIntersectionTest.cpp',
caryclark@google.com7abfa492013-04-12 11:59:41 +000030 '../tests/PathOpsCubicReduceOrderTest.cpp',
reed0dc4dd62015-03-24 13:55:33 -070031 '../tests/PathOpsCubicToQuadsTest.cpp',
caryclark@google.com7abfa492013-04-12 11:59:41 +000032 '../tests/PathOpsDCubicTest.cpp',
33 '../tests/PathOpsDLineTest.cpp',
34 '../tests/PathOpsDPointTest.cpp',
reed0dc4dd62015-03-24 13:55:33 -070035 '../tests/PathOpsDQuadTest.cpp',
caryclark@google.com7abfa492013-04-12 11:59:41 +000036 '../tests/PathOpsDRectTest.cpp',
reed0dc4dd62015-03-24 13:55:33 -070037 '../tests/PathOpsDTriangleTest.cpp',
caryclark@google.com7abfa492013-04-12 11:59:41 +000038 '../tests/PathOpsDVectorTest.cpp',
39 '../tests/PathOpsExtendedTest.cpp',
caryclark65f55312014-11-13 06:58:52 -080040 '../tests/PathOpsFuzz763Test.cpp',
caryclark@google.com7dfbb072013-04-22 14:37:05 +000041 '../tests/PathOpsInverseTest.cpp',
caryclark@google.com7abfa492013-04-12 11:59:41 +000042 '../tests/PathOpsLineIntersectionTest.cpp',
43 '../tests/PathOpsLineParametetersTest.cpp',
44 '../tests/PathOpsOpCubicThreadedTest.cpp',
45 '../tests/PathOpsOpRectThreadedTest.cpp',
46 '../tests/PathOpsOpTest.cpp',
47 '../tests/PathOpsQuadIntersectionTest.cpp',
48 '../tests/PathOpsQuadIntersectionTestData.cpp',
49 '../tests/PathOpsQuadLineIntersectionTest.cpp',
50 '../tests/PathOpsQuadLineIntersectionThreadedTest.cpp',
reed0dc4dd62015-03-24 13:55:33 -070051 '../tests/PathOpsQuadParameterizationTest.cpp',
caryclark@google.com7abfa492013-04-12 11:59:41 +000052 '../tests/PathOpsQuadReduceOrderTest.cpp',
53 '../tests/PathOpsSimplifyDegenerateThreadedTest.cpp',
caryclark@google.com66560ca2013-04-26 19:51:16 +000054 '../tests/PathOpsSimplifyFailTest.cpp',
caryclark@google.com7abfa492013-04-12 11:59:41 +000055 '../tests/PathOpsSimplifyQuadralateralsThreadedTest.cpp',
56 '../tests/PathOpsSimplifyQuadThreadedTest.cpp',
57 '../tests/PathOpsSimplifyRectThreadedTest.cpp',
58 '../tests/PathOpsSimplifyTest.cpp',
59 '../tests/PathOpsSimplifyTrianglesThreadedTest.cpp',
caryclark@google.com7eaa53d2013-10-02 14:49:34 +000060 '../tests/PathOpsSkpTest.cpp',
caryclark@google.com7abfa492013-04-12 11:59:41 +000061 '../tests/PathOpsTestCommon.cpp',
62 '../tests/PathOpsThreadedCommon.cpp',
reed0dc4dd62015-03-24 13:55:33 -070063 '../tests/PathOpsTightBoundsTest.cpp',
caryclark@google.com7abfa492013-04-12 11:59:41 +000064 '../tests/PathOpsCubicIntersectionTestData.h',
65 '../tests/PathOpsExtendedTest.h',
66 '../tests/PathOpsQuadIntersectionTestData.h',
67 '../tests/PathOpsTestCommon.h',
68 '../tests/PathOpsThreadedCommon.h',
caryclark@google.com7abfa492013-04-12 11:59:41 +000069 ],
70}