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': 'tests', | 8 'target_name': 'tests', |
9 'type': 'executable', | 9 'type': 'executable', |
10 'include_dirs' : [ | 10 'include_dirs' : [ |
(...skipping 108 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
119 '../tests/StrokeTest.cpp', | 119 '../tests/StrokeTest.cpp', |
120 '../tests/SurfaceTest.cpp', | 120 '../tests/SurfaceTest.cpp', |
121 '../tests/Test.cpp', | 121 '../tests/Test.cpp', |
122 '../tests/Test.h', | 122 '../tests/Test.h', |
123 '../tests/TestSize.cpp', | 123 '../tests/TestSize.cpp', |
124 '../tests/TileGridTest.cpp', | 124 '../tests/TileGridTest.cpp', |
125 '../tests/TLSTest.cpp', | 125 '../tests/TLSTest.cpp', |
126 '../tests/TSetTest.cpp', | 126 '../tests/TSetTest.cpp', |
127 '../tests/ToUnicode.cpp', | 127 '../tests/ToUnicode.cpp', |
128 '../tests/UnicodeTest.cpp', | 128 '../tests/UnicodeTest.cpp', |
| 129 '../tests/UnitTestTest.cpp', |
129 '../tests/UtilsTest.cpp', | 130 '../tests/UtilsTest.cpp', |
130 '../tests/WArrayTest.cpp', | 131 '../tests/WArrayTest.cpp', |
131 '../tests/WritePixelsTest.cpp', | 132 '../tests/WritePixelsTest.cpp', |
132 '../tests/Writer32Test.cpp', | 133 '../tests/Writer32Test.cpp', |
133 '../tests/XfermodeTest.cpp', | 134 '../tests/XfermodeTest.cpp', |
134 | 135 |
135 # Needed for PipeTest. | 136 # Needed for PipeTest. |
136 '../src/pipe/utils/SamplePipeControllers.cpp', | 137 '../src/pipe/utils/SamplePipeControllers.cpp', |
137 ], | 138 ], |
138 'dependencies': [ | 139 'dependencies': [ |
(...skipping 22 matching lines...) Expand all Loading... |
161 ], | 162 ], |
162 }, | 163 }, |
163 ], | 164 ], |
164 } | 165 } |
165 | 166 |
166 # Local Variables: | 167 # Local Variables: |
167 # tab-width:2 | 168 # tab-width:2 |
168 # indent-tabs-mode:nil | 169 # indent-tabs-mode:nil |
169 # End: | 170 # End: |
170 # vim: set expandtab tabstop=2 shiftwidth=2: | 171 # vim: set expandtab tabstop=2 shiftwidth=2: |
OLD | NEW |