| 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 110 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 121 '../tests/StringTest.cpp', | 121 '../tests/StringTest.cpp', |
| 122 '../tests/StrokeTest.cpp', | 122 '../tests/StrokeTest.cpp', |
| 123 '../tests/SurfaceTest.cpp', | 123 '../tests/SurfaceTest.cpp', |
| 124 '../tests/Test.cpp', | 124 '../tests/Test.cpp', |
| 125 '../tests/Test.h', | 125 '../tests/Test.h', |
| 126 '../tests/TestSize.cpp', | 126 '../tests/TestSize.cpp', |
| 127 '../tests/TileGridTest.cpp', | 127 '../tests/TileGridTest.cpp', |
| 128 '../tests/TLSTest.cpp', | 128 '../tests/TLSTest.cpp', |
| 129 '../tests/TSetTest.cpp', | 129 '../tests/TSetTest.cpp', |
| 130 '../tests/ToUnicode.cpp', | 130 '../tests/ToUnicode.cpp', |
| 131 '../tests/Typeface.cpp', |
| 131 '../tests/UnicodeTest.cpp', | 132 '../tests/UnicodeTest.cpp', |
| 132 '../tests/UnitTestTest.cpp', | 133 '../tests/UnitTestTest.cpp', |
| 133 '../tests/UtilsTest.cpp', | 134 '../tests/UtilsTest.cpp', |
| 134 '../tests/WArrayTest.cpp', | 135 '../tests/WArrayTest.cpp', |
| 135 '../tests/WritePixelsTest.cpp', | 136 '../tests/WritePixelsTest.cpp', |
| 136 '../tests/Writer32Test.cpp', | 137 '../tests/Writer32Test.cpp', |
| 137 '../tests/XfermodeTest.cpp', | 138 '../tests/XfermodeTest.cpp', |
| 138 | 139 |
| 139 # Needed for PipeTest. | 140 # Needed for PipeTest. |
| 140 '../src/pipe/utils/SamplePipeControllers.cpp', | 141 '../src/pipe/utils/SamplePipeControllers.cpp', |
| (...skipping 24 matching lines...) Expand all Loading... |
| 165 ], | 166 ], |
| 166 }, | 167 }, |
| 167 ], | 168 ], |
| 168 } | 169 } |
| 169 | 170 |
| 170 # Local Variables: | 171 # Local Variables: |
| 171 # tab-width:2 | 172 # tab-width:2 |
| 172 # indent-tabs-mode:nil | 173 # indent-tabs-mode:nil |
| 173 # End: | 174 # End: |
| 174 # vim: set expandtab tabstop=2 shiftwidth=2: | 175 # vim: set expandtab tabstop=2 shiftwidth=2: |
| OLD | NEW |