| 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 78 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 89 '../tests/GrUnitTests.cpp', | 89 '../tests/GrUnitTests.cpp', |
| 90 '../tests/HashCacheTest.cpp', | 90 '../tests/HashCacheTest.cpp', |
| 91 '../tests/ImageCacheTest.cpp', | 91 '../tests/ImageCacheTest.cpp', |
| 92 '../tests/ImageDecodingTest.cpp', | 92 '../tests/ImageDecodingTest.cpp', |
| 93 '../tests/ImageFilterTest.cpp', | 93 '../tests/ImageFilterTest.cpp', |
| 94 '../tests/InfRectTest.cpp', | 94 '../tests/InfRectTest.cpp', |
| 95 '../tests/JpegTest.cpp', | 95 '../tests/JpegTest.cpp', |
| 96 '../tests/LListTest.cpp', | 96 '../tests/LListTest.cpp', |
| 97 '../tests/LayerDrawLooperTest.cpp', | 97 '../tests/LayerDrawLooperTest.cpp', |
| 98 '../tests/MD5Test.cpp', | 98 '../tests/MD5Test.cpp', |
| 99 '../tests/MallocPixelRefTest.cpp', |
| 99 '../tests/MathTest.cpp', | 100 '../tests/MathTest.cpp', |
| 100 '../tests/MatrixTest.cpp', | 101 '../tests/MatrixTest.cpp', |
| 101 '../tests/Matrix44Test.cpp', | 102 '../tests/Matrix44Test.cpp', |
| 102 '../tests/MemoryTest.cpp', | 103 '../tests/MemoryTest.cpp', |
| 103 '../tests/MemsetTest.cpp', | 104 '../tests/MemsetTest.cpp', |
| 104 '../tests/MessageBusTest.cpp', | 105 '../tests/MessageBusTest.cpp', |
| 105 '../tests/MetaDataTest.cpp', | 106 '../tests/MetaDataTest.cpp', |
| 106 '../tests/MipMapTest.cpp', | 107 '../tests/MipMapTest.cpp', |
| 107 '../tests/OnceTest.cpp', | 108 '../tests/OnceTest.cpp', |
| 108 '../tests/OSPathTest.cpp', | 109 '../tests/OSPathTest.cpp', |
| (...skipping 68 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 177 'conditions': [ | 178 'conditions': [ |
| 178 [ 'skia_gpu == 1', { | 179 [ 'skia_gpu == 1', { |
| 179 'include_dirs': [ | 180 'include_dirs': [ |
| 180 '../src/gpu', | 181 '../src/gpu', |
| 181 ], | 182 ], |
| 182 }], | 183 }], |
| 183 ], | 184 ], |
| 184 }, | 185 }, |
| 185 ], | 186 ], |
| 186 } | 187 } |
| OLD | NEW |