blob: 923a25a5b82146d6fcd159ff240dfc936495a251 [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': [
mtkleincd1f2da2015-07-28 08:55:14 -07008 '../include/private',
caryclarka8d2ffb2014-06-24 07:55:11 -07009 '../src/core',
10 '../src/effects',
11 '../src/lazy',
12 '../src/pathops',
13 '../src/pipe/utils',
14 '../src/utils',
15 ],
16 'dependencies': [
17 'flags.gyp:flags',
18 'skia_lib.gyp:skia_lib',
19 'tools.gyp:resources',
20 ],
caryclark@google.com7abfa492013-04-12 11:59:41 +000021 'sources': [
caryclarka8d2ffb2014-06-24 07:55:11 -070022 '../tests/Test.cpp',
23 '../tests/Test.h',
24
caryclark@google.comad65a3e2013-04-15 19:13:59 +000025 '../tests/PathOpsAngleTest.cpp',
caryclark@google.com7abfa492013-04-12 11:59:41 +000026 '../tests/PathOpsBoundsTest.cpp',
caryclark54359292015-03-26 07:52:43 -070027 '../tests/PathOpsBuilderTest.cpp',
28 '../tests/PathOpsBuildUseTest.cpp',
caryclark1049f122015-04-20 08:31:59 -070029 '../tests/PathOpsConicIntersectionTest.cpp',
30 '../tests/PathOpsConicLineIntersectionTest.cpp',
caryclark26ad22a2015-10-16 09:03:38 -070031 '../tests/PathOpsCubicConicIntersectionTest.cpp',
caryclark@google.com7abfa492013-04-12 11:59:41 +000032 '../tests/PathOpsCubicIntersectionTest.cpp',
33 '../tests/PathOpsCubicIntersectionTestData.cpp',
34 '../tests/PathOpsCubicLineIntersectionTest.cpp',
caryclark@google.coma5e55922013-05-07 18:51:31 +000035 '../tests/PathOpsCubicQuadIntersectionTest.cpp',
caryclark@google.com7abfa492013-04-12 11:59:41 +000036 '../tests/PathOpsCubicReduceOrderTest.cpp',
caryclark@google.com7abfa492013-04-12 11:59:41 +000037 '../tests/PathOpsDCubicTest.cpp',
38 '../tests/PathOpsDLineTest.cpp',
39 '../tests/PathOpsDPointTest.cpp',
caryclark@google.com7abfa492013-04-12 11:59:41 +000040 '../tests/PathOpsDRectTest.cpp',
caryclark@google.com7abfa492013-04-12 11:59:41 +000041 '../tests/PathOpsDVectorTest.cpp',
42 '../tests/PathOpsExtendedTest.cpp',
caryclark65f55312014-11-13 06:58:52 -080043 '../tests/PathOpsFuzz763Test.cpp',
caryclark@google.com7dfbb072013-04-22 14:37:05 +000044 '../tests/PathOpsInverseTest.cpp',
caryclark1049f122015-04-20 08:31:59 -070045 '../tests/PathOpsIssue3651.cpp',
caryclark@google.com7abfa492013-04-12 11:59:41 +000046 '../tests/PathOpsLineIntersectionTest.cpp',
47 '../tests/PathOpsLineParametetersTest.cpp',
caryclark1049f122015-04-20 08:31:59 -070048 '../tests/PathOpsOpCircleThreadedTest.cpp',
caryclark@google.com7abfa492013-04-12 11:59:41 +000049 '../tests/PathOpsOpCubicThreadedTest.cpp',
50 '../tests/PathOpsOpRectThreadedTest.cpp',
51 '../tests/PathOpsOpTest.cpp',
52 '../tests/PathOpsQuadIntersectionTest.cpp',
53 '../tests/PathOpsQuadIntersectionTestData.cpp',
54 '../tests/PathOpsQuadLineIntersectionTest.cpp',
55 '../tests/PathOpsQuadLineIntersectionThreadedTest.cpp',
caryclark@google.com7abfa492013-04-12 11:59:41 +000056 '../tests/PathOpsQuadReduceOrderTest.cpp',
57 '../tests/PathOpsSimplifyDegenerateThreadedTest.cpp',
caryclark@google.com66560ca2013-04-26 19:51:16 +000058 '../tests/PathOpsSimplifyFailTest.cpp',
caryclark@google.com7abfa492013-04-12 11:59:41 +000059 '../tests/PathOpsSimplifyQuadralateralsThreadedTest.cpp',
60 '../tests/PathOpsSimplifyQuadThreadedTest.cpp',
61 '../tests/PathOpsSimplifyRectThreadedTest.cpp',
62 '../tests/PathOpsSimplifyTest.cpp',
63 '../tests/PathOpsSimplifyTrianglesThreadedTest.cpp',
caryclark@google.com7eaa53d2013-10-02 14:49:34 +000064 '../tests/PathOpsSkpTest.cpp',
caryclark@google.com7abfa492013-04-12 11:59:41 +000065 '../tests/PathOpsTestCommon.cpp',
66 '../tests/PathOpsThreadedCommon.cpp',
caryclark54359292015-03-26 07:52:43 -070067 '../tests/PathOpsThreeWayTest.cpp',
mtkleincd1f2da2015-07-28 08:55:14 -070068 '../tests/PathOpsTightBoundsTest.cpp',
69 '../tests/PathOpsTypesTest.cpp',
caryclark54359292015-03-26 07:52:43 -070070
caryclark@google.com7abfa492013-04-12 11:59:41 +000071 '../tests/PathOpsCubicIntersectionTestData.h',
72 '../tests/PathOpsExtendedTest.h',
73 '../tests/PathOpsQuadIntersectionTestData.h',
74 '../tests/PathOpsTestCommon.h',
75 '../tests/PathOpsThreadedCommon.h',
caryclark54359292015-03-26 07:52:43 -070076 '../tests/PathOpsTSectDebug.h',
caryclark@google.com7abfa492013-04-12 11:59:41 +000077 ],
78}