| 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 133 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 144 '../tests/SrcOverTest.cpp', | 144 '../tests/SrcOverTest.cpp', |
| 145 '../tests/StreamTest.cpp', | 145 '../tests/StreamTest.cpp', |
| 146 '../tests/StringTest.cpp', | 146 '../tests/StringTest.cpp', |
| 147 '../tests/StrokeTest.cpp', | 147 '../tests/StrokeTest.cpp', |
| 148 '../tests/SurfaceTest.cpp', | 148 '../tests/SurfaceTest.cpp', |
| 149 '../tests/Test.cpp', | 149 '../tests/Test.cpp', |
| 150 '../tests/Test.h', | 150 '../tests/Test.h', |
| 151 '../tests/TestSize.cpp', | 151 '../tests/TestSize.cpp', |
| 152 '../tests/TileGridTest.cpp', | 152 '../tests/TileGridTest.cpp', |
| 153 '../tests/TLSTest.cpp', | 153 '../tests/TLSTest.cpp', |
| 154 '../tests/TracingTest.cpp', |
| 154 '../tests/TSetTest.cpp', | 155 '../tests/TSetTest.cpp', |
| 155 '../tests/ToUnicode.cpp', | 156 '../tests/ToUnicode.cpp', |
| 156 '../tests/Typeface.cpp', | 157 '../tests/Typeface.cpp', |
| 157 '../tests/UnicodeTest.cpp', | 158 '../tests/UnicodeTest.cpp', |
| 158 '../tests/UnitTestTest.cpp', | 159 '../tests/UnitTestTest.cpp', |
| 159 '../tests/UtilsTest.cpp', | 160 '../tests/UtilsTest.cpp', |
| 160 '../tests/WArrayTest.cpp', | 161 '../tests/WArrayTest.cpp', |
| 161 '../tests/WritePixelsTest.cpp', | 162 '../tests/WritePixelsTest.cpp', |
| 162 '../tests/Writer32Test.cpp', | 163 '../tests/Writer32Test.cpp', |
| 163 '../tests/XfermodeTest.cpp', | 164 '../tests/XfermodeTest.cpp', |
| (...skipping 14 matching lines...) Expand all Loading... |
| 178 'conditions': [ | 179 'conditions': [ |
| 179 [ 'skia_gpu == 1', { | 180 [ 'skia_gpu == 1', { |
| 180 'include_dirs': [ | 181 'include_dirs': [ |
| 181 '../src/gpu', | 182 '../src/gpu', |
| 182 ], | 183 ], |
| 183 }], | 184 }], |
| 184 ], | 185 ], |
| 185 }, | 186 }, |
| 186 ], | 187 ], |
| 187 } | 188 } |
| OLD | NEW |