Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(295)

Side by Side Diff: gyp/pathops_unittest.gypi

Issue 1037573004: cumulative pathops patch (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: fix pathopsinverse gm Created 5 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « gyp/pathops_unittest.gyp ('k') | include/pathops/SkPathOps.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright 2015 Google Inc. 1 # Copyright 2015 Google Inc.
2 # 2 #
3 # Use of this source code is governed by a BSD-style license that can be 3 # Use of this source code is governed by a BSD-style license that can be
4 # found in the LICENSE file. 4 # found in the LICENSE file.
5 # Common gypi for pathops unit tests. 5 # Common gypi for pathops unit tests.
6 { 6 {
7 'include_dirs': [ 7 'include_dirs': [
8 '../src/core', 8 '../src/core',
9 '../src/effects', 9 '../src/effects',
10 '../src/lazy', 10 '../src/lazy',
11 '../src/pathops', 11 '../src/pathops',
12 '../src/pipe/utils', 12 '../src/pipe/utils',
13 '../src/utils', 13 '../src/utils',
14 ], 14 ],
15 'dependencies': [ 15 'dependencies': [
16 'flags.gyp:flags', 16 'flags.gyp:flags',
17 'skia_lib.gyp:skia_lib', 17 'skia_lib.gyp:skia_lib',
18 'tools.gyp:resources', 18 'tools.gyp:resources',
19 ], 19 ],
20 'sources': [ 20 'sources': [
21 '../tests/Test.cpp', 21 '../tests/Test.cpp',
22 '../tests/Test.h', 22 '../tests/Test.h',
23 23
24 '../tests/PathOpsAngleTest.cpp', 24 '../tests/PathOpsAngleTest.cpp',
25 '../tests/PathOpsBoundsTest.cpp', 25 '../tests/PathOpsBoundsTest.cpp',
26 '../tests/PathOpsBuilderTest.cpp',
27 '../tests/PathOpsBuildUseTest.cpp',
26 '../tests/PathOpsCubicIntersectionTest.cpp', 28 '../tests/PathOpsCubicIntersectionTest.cpp',
27 '../tests/PathOpsCubicIntersectionTestData.cpp', 29 '../tests/PathOpsCubicIntersectionTestData.cpp',
28 '../tests/PathOpsCubicLineIntersectionTest.cpp', 30 '../tests/PathOpsCubicLineIntersectionTest.cpp',
29 '../tests/PathOpsCubicQuadIntersectionTest.cpp', 31 '../tests/PathOpsCubicQuadIntersectionTest.cpp',
30 '../tests/PathOpsCubicReduceOrderTest.cpp', 32 '../tests/PathOpsCubicReduceOrderTest.cpp',
31 '../tests/PathOpsCubicToQuadsTest.cpp',
32 '../tests/PathOpsDCubicTest.cpp', 33 '../tests/PathOpsDCubicTest.cpp',
33 '../tests/PathOpsDLineTest.cpp', 34 '../tests/PathOpsDLineTest.cpp',
34 '../tests/PathOpsDPointTest.cpp', 35 '../tests/PathOpsDPointTest.cpp',
35 '../tests/PathOpsDQuadTest.cpp',
36 '../tests/PathOpsDRectTest.cpp', 36 '../tests/PathOpsDRectTest.cpp',
37 '../tests/PathOpsDTriangleTest.cpp',
38 '../tests/PathOpsDVectorTest.cpp', 37 '../tests/PathOpsDVectorTest.cpp',
39 '../tests/PathOpsExtendedTest.cpp', 38 '../tests/PathOpsExtendedTest.cpp',
40 '../tests/PathOpsFuzz763Test.cpp', 39 '../tests/PathOpsFuzz763Test.cpp',
41 '../tests/PathOpsInverseTest.cpp', 40 '../tests/PathOpsInverseTest.cpp',
42 '../tests/PathOpsLineIntersectionTest.cpp', 41 '../tests/PathOpsLineIntersectionTest.cpp',
43 '../tests/PathOpsLineParametetersTest.cpp', 42 '../tests/PathOpsLineParametetersTest.cpp',
44 '../tests/PathOpsOpCubicThreadedTest.cpp', 43 '../tests/PathOpsOpCubicThreadedTest.cpp',
45 '../tests/PathOpsOpRectThreadedTest.cpp', 44 '../tests/PathOpsOpRectThreadedTest.cpp',
46 '../tests/PathOpsOpTest.cpp', 45 '../tests/PathOpsOpTest.cpp',
47 '../tests/PathOpsQuadIntersectionTest.cpp', 46 '../tests/PathOpsQuadIntersectionTest.cpp',
48 '../tests/PathOpsQuadIntersectionTestData.cpp', 47 '../tests/PathOpsQuadIntersectionTestData.cpp',
49 '../tests/PathOpsQuadLineIntersectionTest.cpp', 48 '../tests/PathOpsQuadLineIntersectionTest.cpp',
50 '../tests/PathOpsQuadLineIntersectionThreadedTest.cpp', 49 '../tests/PathOpsQuadLineIntersectionThreadedTest.cpp',
51 '../tests/PathOpsQuadParameterizationTest.cpp',
52 '../tests/PathOpsQuadReduceOrderTest.cpp', 50 '../tests/PathOpsQuadReduceOrderTest.cpp',
53 '../tests/PathOpsSimplifyDegenerateThreadedTest.cpp', 51 '../tests/PathOpsSimplifyDegenerateThreadedTest.cpp',
54 '../tests/PathOpsSimplifyFailTest.cpp', 52 '../tests/PathOpsSimplifyFailTest.cpp',
55 '../tests/PathOpsSimplifyQuadralateralsThreadedTest.cpp', 53 '../tests/PathOpsSimplifyQuadralateralsThreadedTest.cpp',
56 '../tests/PathOpsSimplifyQuadThreadedTest.cpp', 54 '../tests/PathOpsSimplifyQuadThreadedTest.cpp',
57 '../tests/PathOpsSimplifyRectThreadedTest.cpp', 55 '../tests/PathOpsSimplifyRectThreadedTest.cpp',
58 '../tests/PathOpsSimplifyTest.cpp', 56 '../tests/PathOpsSimplifyTest.cpp',
59 '../tests/PathOpsSimplifyTrianglesThreadedTest.cpp', 57 '../tests/PathOpsSimplifyTrianglesThreadedTest.cpp',
60 '../tests/PathOpsSkpTest.cpp', 58 '../tests/PathOpsSkpTest.cpp',
61 '../tests/PathOpsTestCommon.cpp', 59 '../tests/PathOpsTestCommon.cpp',
62 '../tests/PathOpsThreadedCommon.cpp', 60 '../tests/PathOpsThreadedCommon.cpp',
63 '../tests/PathOpsTightBoundsTest.cpp', 61 '../tests/PathOpsThreeWayTest.cpp',
62 '../tests/PathOpsTightBoundsTest.cpp',
63 '../tests/PathOpsTypesTest.cpp',
64
64 '../tests/PathOpsCubicIntersectionTestData.h', 65 '../tests/PathOpsCubicIntersectionTestData.h',
65 '../tests/PathOpsExtendedTest.h', 66 '../tests/PathOpsExtendedTest.h',
66 '../tests/PathOpsQuadIntersectionTestData.h', 67 '../tests/PathOpsQuadIntersectionTestData.h',
67 '../tests/PathOpsTestCommon.h', 68 '../tests/PathOpsTestCommon.h',
68 '../tests/PathOpsThreadedCommon.h', 69 '../tests/PathOpsThreadedCommon.h',
70 '../tests/PathOpsTSectDebug.h',
69 ], 71 ],
70 } 72 }
OLDNEW
« no previous file with comments | « gyp/pathops_unittest.gyp ('k') | include/pathops/SkPathOps.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698