OLD | NEW |
1 # GYP file to build unit tests. | 1 # GYP file to build unit tests. |
2 { | 2 { |
3 'includes': [ | 3 'includes': [ |
4 'apptype_console.gypi', | 4 'apptype_console.gypi', |
5 ], | 5 ], |
6 'targets': [ | 6 'targets': [ |
7 { | 7 { |
8 'target_name': 'pathops_unittest', | 8 'target_name': 'pathops_unittest', |
9 'type': 'executable', | 9 'type': 'executable', |
10 'include_dirs' : [ | 10 'include_dirs' : [ |
(...skipping 88 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
99 '../tests/PathOpsQuadLineIntersectionThreadedTest.cpp', | 99 '../tests/PathOpsQuadLineIntersectionThreadedTest.cpp', |
100 '../tests/PathOpsQuadParameterizationTest.cpp', | 100 '../tests/PathOpsQuadParameterizationTest.cpp', |
101 '../tests/PathOpsQuadReduceOrderTest.cpp', | 101 '../tests/PathOpsQuadReduceOrderTest.cpp', |
102 '../tests/PathOpsSimplifyDegenerateThreadedTest.cpp', | 102 '../tests/PathOpsSimplifyDegenerateThreadedTest.cpp', |
103 '../tests/PathOpsSimplifyQuadralateralsThreadedTest.cpp', | 103 '../tests/PathOpsSimplifyQuadralateralsThreadedTest.cpp', |
104 '../tests/PathOpsSimplifyQuadThreadedTest.cpp', | 104 '../tests/PathOpsSimplifyQuadThreadedTest.cpp', |
105 '../tests/PathOpsSimplifyRectThreadedTest.cpp', | 105 '../tests/PathOpsSimplifyRectThreadedTest.cpp', |
106 '../tests/PathOpsSimplifyTest.cpp', | 106 '../tests/PathOpsSimplifyTest.cpp', |
107 '../tests/PathOpsSimplifyTrianglesThreadedTest.cpp', | 107 '../tests/PathOpsSimplifyTrianglesThreadedTest.cpp', |
108 '../tests/PathOpsTestCommon.cpp', | 108 '../tests/PathOpsTestCommon.cpp', |
| 109 '../tests/PathOpsThreadedCommon.cpp', |
109 '../tests/PathOpsCubicIntersectionTestData.h', | 110 '../tests/PathOpsCubicIntersectionTestData.h', |
110 '../tests/PathOpsExtendedTest.h', | 111 '../tests/PathOpsExtendedTest.h', |
111 '../tests/PathOpsQuadIntersectionTestData.h', | 112 '../tests/PathOpsQuadIntersectionTestData.h', |
112 '../tests/PathOpsTestCommon.h', | 113 '../tests/PathOpsTestCommon.h', |
| 114 '../tests/PathOpsThreadedCommon.h', |
113 '../tests/Test.cpp', | 115 '../tests/Test.cpp', |
114 '../tests/skia_test.cpp', | 116 '../tests/skia_test.cpp', |
115 '../tests/Test.h', | 117 '../tests/Test.h', |
116 ], | 118 ], |
117 'dependencies': [ | 119 'dependencies': [ |
118 'skia_base_libs.gyp:skia_base_libs', | 120 'skia_base_libs.gyp:skia_base_libs', |
119 'effects.gyp:effects', | 121 'effects.gyp:effects', |
120 'images.gyp:images', | 122 'images.gyp:images', |
121 'utils.gyp:utils', | 123 'utils.gyp:utils', |
122 ], | 124 ], |
123 'conditions': [ | 125 'conditions': [ |
124 [ 'skia_gpu == 1', { | 126 [ 'skia_gpu == 1', { |
125 'include_dirs': [ | 127 'include_dirs': [ |
126 '../src/gpu', | 128 '../src/gpu', |
127 ], | 129 ], |
128 }], | 130 }], |
129 ], | 131 ], |
130 }, | 132 }, |
131 ], | 133 ], |
132 } | 134 } |
133 | 135 |
134 # Local Variables: | 136 # Local Variables: |
135 # tab-width:2 | 137 # tab-width:2 |
136 # indent-tabs-mode:nil | 138 # indent-tabs-mode:nil |
137 # End: | 139 # End: |
138 # vim: set expandtab tabstop=2 shiftwidth=2: | 140 # vim: set expandtab tabstop=2 shiftwidth=2: |
OLD | NEW |