| 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 14 matching lines...) Expand all Loading... |
| 25 ], | 25 ], |
| 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/ARGBImageEncoderTest.cpp', | 31 '../tests/ARGBImageEncoderTest.cpp', |
| 32 '../tests/AndroidPaintTest.cpp', | 32 '../tests/AndroidPaintTest.cpp', |
| 33 '../tests/AnnotationTest.cpp', | 33 '../tests/AnnotationTest.cpp', |
| 34 '../tests/AtomicTest.cpp', | 34 '../tests/AtomicTest.cpp', |
| 35 '../tests/BBoxHierarchyTest.cpp', |
| 35 '../tests/BitSetTest.cpp', | 36 '../tests/BitSetTest.cpp', |
| 36 '../tests/BitmapCopyTest.cpp', | 37 '../tests/BitmapCopyTest.cpp', |
| 37 '../tests/BitmapGetColorTest.cpp', | 38 '../tests/BitmapGetColorTest.cpp', |
| 38 '../tests/BitmapHasherTest.cpp', | 39 '../tests/BitmapHasherTest.cpp', |
| 39 '../tests/BitmapHeapTest.cpp', | 40 '../tests/BitmapHeapTest.cpp', |
| 40 '../tests/BitmapTest.cpp', | 41 '../tests/BitmapTest.cpp', |
| 41 '../tests/BlitRowTest.cpp', | 42 '../tests/BlitRowTest.cpp', |
| 42 '../tests/BlurTest.cpp', | 43 '../tests/BlurTest.cpp', |
| 43 '../tests/CachedDecodingPixelRefTest.cpp', | 44 '../tests/CachedDecodingPixelRefTest.cpp', |
| 44 '../tests/CanvasStateTest.cpp', | 45 '../tests/CanvasStateTest.cpp', |
| (...skipping 136 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 181 'conditions': [ | 182 'conditions': [ |
| 182 [ 'skia_gpu == 1', { | 183 [ 'skia_gpu == 1', { |
| 183 'include_dirs': [ | 184 'include_dirs': [ |
| 184 '../src/gpu', | 185 '../src/gpu', |
| 185 ], | 186 ], |
| 186 }], | 187 }], |
| 187 ], | 188 ], |
| 188 }, | 189 }, |
| 189 ], | 190 ], |
| 190 } | 191 } |
| OLD | NEW |