| 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 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 49 '../tests/ClipStackTest.cpp', | 49 '../tests/ClipStackTest.cpp', |
| 50 '../tests/ClipperTest.cpp', | 50 '../tests/ClipperTest.cpp', |
| 51 '../tests/ColorFilterTest.cpp', | 51 '../tests/ColorFilterTest.cpp', |
| 52 '../tests/ColorPrivTest.cpp', | 52 '../tests/ColorPrivTest.cpp', |
| 53 '../tests/ColorTest.cpp', | 53 '../tests/ColorTest.cpp', |
| 54 '../tests/DataRefTest.cpp', | 54 '../tests/DataRefTest.cpp', |
| 55 '../tests/DeferredCanvasTest.cpp', | 55 '../tests/DeferredCanvasTest.cpp', |
| 56 '../tests/DequeTest.cpp', | 56 '../tests/DequeTest.cpp', |
| 57 '../tests/DeviceLooperTest.cpp', | 57 '../tests/DeviceLooperTest.cpp', |
| 58 '../tests/DiscardableMemoryPool.cpp', | 58 '../tests/DiscardableMemoryPool.cpp', |
| 59 '../tests/DiscardableMemoryTest.cpp', |
| 59 '../tests/DocumentTest.cpp', | 60 '../tests/DocumentTest.cpp', |
| 60 '../tests/DrawBitmapRectTest.cpp', | 61 '../tests/DrawBitmapRectTest.cpp', |
| 61 '../tests/DrawPathTest.cpp', | 62 '../tests/DrawPathTest.cpp', |
| 62 '../tests/DrawTextTest.cpp', | 63 '../tests/DrawTextTest.cpp', |
| 63 '../tests/DynamicHashTest.cpp', | 64 '../tests/DynamicHashTest.cpp', |
| 64 '../tests/EmptyPathTest.cpp', | 65 '../tests/EmptyPathTest.cpp', |
| 65 '../tests/ErrorTest.cpp', | 66 '../tests/ErrorTest.cpp', |
| 66 '../tests/FillPathTest.cpp', | 67 '../tests/FillPathTest.cpp', |
| 67 '../tests/FitsInTest.cpp', | 68 '../tests/FitsInTest.cpp', |
| 68 '../tests/FlatDataTest.cpp', | 69 '../tests/FlatDataTest.cpp', |
| (...skipping 106 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 175 'conditions': [ | 176 'conditions': [ |
| 176 [ 'skia_gpu == 1', { | 177 [ 'skia_gpu == 1', { |
| 177 'include_dirs': [ | 178 'include_dirs': [ |
| 178 '../src/gpu', | 179 '../src/gpu', |
| 179 ], | 180 ], |
| 180 }], | 181 }], |
| 181 ], | 182 ], |
| 182 }, | 183 }, |
| 183 ], | 184 ], |
| 184 } | 185 } |
| OLD | NEW |