| 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 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 43 '../tests/CachedDecodingPixelRefTest.cpp', | 43 '../tests/CachedDecodingPixelRefTest.cpp', |
| 44 '../tests/CanvasTest.cpp', | 44 '../tests/CanvasTest.cpp', |
| 45 '../tests/CanvasStateTest.cpp', | 45 '../tests/CanvasStateTest.cpp', |
| 46 '../tests/ChecksumTest.cpp', | 46 '../tests/ChecksumTest.cpp', |
| 47 '../tests/ClampRangeTest.cpp', | 47 '../tests/ClampRangeTest.cpp', |
| 48 '../tests/ClipCacheTest.cpp', | 48 '../tests/ClipCacheTest.cpp', |
| 49 '../tests/ClipCubicTest.cpp', | 49 '../tests/ClipCubicTest.cpp', |
| 50 '../tests/ClipStackTest.cpp', | 50 '../tests/ClipStackTest.cpp', |
| 51 '../tests/ClipperTest.cpp', | 51 '../tests/ClipperTest.cpp', |
| 52 '../tests/ColorFilterTest.cpp', | 52 '../tests/ColorFilterTest.cpp', |
| 53 '../tests/ColorPrivTest.cpp', |
| 53 '../tests/ColorTest.cpp', | 54 '../tests/ColorTest.cpp', |
| 54 '../tests/DataRefTest.cpp', | 55 '../tests/DataRefTest.cpp', |
| 55 '../tests/DeferredCanvasTest.cpp', | 56 '../tests/DeferredCanvasTest.cpp', |
| 56 '../tests/DequeTest.cpp', | 57 '../tests/DequeTest.cpp', |
| 57 '../tests/DeviceLooperTest.cpp', | 58 '../tests/DeviceLooperTest.cpp', |
| 58 '../tests/DocumentTest.cpp', | 59 '../tests/DocumentTest.cpp', |
| 59 '../tests/DrawBitmapRectTest.cpp', | 60 '../tests/DrawBitmapRectTest.cpp', |
| 60 '../tests/DrawPathTest.cpp', | 61 '../tests/DrawPathTest.cpp', |
| 61 '../tests/DrawTextTest.cpp', | 62 '../tests/DrawTextTest.cpp', |
| 62 '../tests/DynamicHashTest.cpp', | 63 '../tests/DynamicHashTest.cpp', |
| (...skipping 111 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 174 'conditions': [ | 175 'conditions': [ |
| 175 [ 'skia_gpu == 1', { | 176 [ 'skia_gpu == 1', { |
| 176 'include_dirs': [ | 177 'include_dirs': [ |
| 177 '../src/gpu', | 178 '../src/gpu', |
| 178 ], | 179 ], |
| 179 }], | 180 }], |
| 180 ], | 181 ], |
| 181 }, | 182 }, |
| 182 ], | 183 ], |
| 183 } | 184 } |
| OLD | NEW |