| 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 15 matching lines...) Expand all Loading... |
| 26 'includes': [ | 26 'includes': [ |
| 27 'pathops_unittest.gypi', | 27 'pathops_unittest.gypi', |
| 28 ], | 28 ], |
| 29 'sources': [ | 29 'sources': [ |
| 30 '../tests/AAClipTest.cpp', | 30 '../tests/AAClipTest.cpp', |
| 31 '../tests/AndroidPaintTest.cpp', | 31 '../tests/AndroidPaintTest.cpp', |
| 32 '../tests/AnnotationTest.cpp', | 32 '../tests/AnnotationTest.cpp', |
| 33 '../tests/ARGBImageEncoderTest.cpp', | 33 '../tests/ARGBImageEncoderTest.cpp', |
| 34 '../tests/AtomicTest.cpp', | 34 '../tests/AtomicTest.cpp', |
| 35 '../tests/BitmapCopyTest.cpp', | 35 '../tests/BitmapCopyTest.cpp', |
| 36 '../tests/BitmapFactoryTest.cpp', | |
| 37 '../tests/BitmapGetColorTest.cpp', | 36 '../tests/BitmapGetColorTest.cpp', |
| 38 '../tests/BitmapHasherTest.cpp', | 37 '../tests/BitmapHasherTest.cpp', |
| 39 '../tests/BitmapHeapTest.cpp', | 38 '../tests/BitmapHeapTest.cpp', |
| 40 '../tests/BitSetTest.cpp', | 39 '../tests/BitSetTest.cpp', |
| 41 '../tests/BlitRowTest.cpp', | 40 '../tests/BlitRowTest.cpp', |
| 42 '../tests/BlurTest.cpp', | 41 '../tests/BlurTest.cpp', |
| 43 '../tests/CachedDecodingPixelRefTest.cpp', | 42 '../tests/CachedDecodingPixelRefTest.cpp', |
| 44 '../tests/CanvasTest.cpp', | 43 '../tests/CanvasTest.cpp', |
| 45 '../tests/CanvasStateTest.cpp', | 44 '../tests/CanvasStateTest.cpp', |
| 46 '../tests/ChecksumTest.cpp', | 45 '../tests/ChecksumTest.cpp', |
| 47 '../tests/ClampRangeTest.cpp', | 46 '../tests/ClampRangeTest.cpp', |
| 48 '../tests/ClipCacheTest.cpp', | 47 '../tests/ClipCacheTest.cpp', |
| 49 '../tests/ClipCubicTest.cpp', | 48 '../tests/ClipCubicTest.cpp', |
| 50 '../tests/ClipStackTest.cpp', | 49 '../tests/ClipStackTest.cpp', |
| 51 '../tests/ClipperTest.cpp', | 50 '../tests/ClipperTest.cpp', |
| 52 '../tests/ColorFilterTest.cpp', | 51 '../tests/ColorFilterTest.cpp', |
| 53 '../tests/ColorPrivTest.cpp', | 52 '../tests/ColorPrivTest.cpp', |
| 54 '../tests/ColorTest.cpp', | 53 '../tests/ColorTest.cpp', |
| 55 '../tests/DataRefTest.cpp', | 54 '../tests/DataRefTest.cpp', |
| 56 '../tests/DeferredCanvasTest.cpp', | 55 '../tests/DeferredCanvasTest.cpp', |
| 57 '../tests/DequeTest.cpp', | 56 '../tests/DequeTest.cpp', |
| 58 '../tests/DeviceLooperTest.cpp', | 57 '../tests/DeviceLooperTest.cpp', |
| 58 '../tests/DiscardableMemoryPool.cpp', |
| 59 '../tests/DocumentTest.cpp', | 59 '../tests/DocumentTest.cpp', |
| 60 '../tests/DrawBitmapRectTest.cpp', | 60 '../tests/DrawBitmapRectTest.cpp', |
| 61 '../tests/DrawPathTest.cpp', | 61 '../tests/DrawPathTest.cpp', |
| 62 '../tests/DrawTextTest.cpp', | 62 '../tests/DrawTextTest.cpp', |
| 63 '../tests/DynamicHashTest.cpp', | 63 '../tests/DynamicHashTest.cpp', |
| 64 '../tests/EmptyPathTest.cpp', | 64 '../tests/EmptyPathTest.cpp', |
| 65 '../tests/ErrorTest.cpp', | 65 '../tests/ErrorTest.cpp', |
| 66 '../tests/FillPathTest.cpp', | 66 '../tests/FillPathTest.cpp', |
| 67 '../tests/FitsInTest.cpp', | 67 '../tests/FitsInTest.cpp', |
| 68 '../tests/FlatDataTest.cpp', | 68 '../tests/FlatDataTest.cpp', |
| (...skipping 106 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 175 'conditions': [ | 175 'conditions': [ |
| 176 [ 'skia_gpu == 1', { | 176 [ 'skia_gpu == 1', { |
| 177 'include_dirs': [ | 177 'include_dirs': [ |
| 178 '../src/gpu', | 178 '../src/gpu', |
| 179 ], | 179 ], |
| 180 }], | 180 }], |
| 181 ], | 181 ], |
| 182 }, | 182 }, |
| 183 ], | 183 ], |
| 184 } | 184 } |
| OLD | NEW |