| 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 22 matching lines...) Expand all Loading... |
| 33 '../tests/AndroidPaintTest.cpp', | 33 '../tests/AndroidPaintTest.cpp', |
| 34 '../tests/AnnotationTest.cpp', | 34 '../tests/AnnotationTest.cpp', |
| 35 '../tests/AtomicTest.cpp', | 35 '../tests/AtomicTest.cpp', |
| 36 '../tests/BBoxHierarchyTest.cpp', | 36 '../tests/BBoxHierarchyTest.cpp', |
| 37 '../tests/BitSetTest.cpp', | 37 '../tests/BitSetTest.cpp', |
| 38 '../tests/BitmapCopyTest.cpp', | 38 '../tests/BitmapCopyTest.cpp', |
| 39 '../tests/BitmapGetColorTest.cpp', | 39 '../tests/BitmapGetColorTest.cpp', |
| 40 '../tests/BitmapHasherTest.cpp', | 40 '../tests/BitmapHasherTest.cpp', |
| 41 '../tests/BitmapHeapTest.cpp', | 41 '../tests/BitmapHeapTest.cpp', |
| 42 '../tests/BitmapTest.cpp', | 42 '../tests/BitmapTest.cpp', |
| 43 '../tests/BlendTest.cpp', |
| 43 '../tests/BlitRowTest.cpp', | 44 '../tests/BlitRowTest.cpp', |
| 44 '../tests/BlurTest.cpp', | 45 '../tests/BlurTest.cpp', |
| 45 '../tests/CachedDecodingPixelRefTest.cpp', | 46 '../tests/CachedDecodingPixelRefTest.cpp', |
| 46 '../tests/CanvasStateTest.cpp', | 47 '../tests/CanvasStateTest.cpp', |
| 47 '../tests/CanvasTest.cpp', | 48 '../tests/CanvasTest.cpp', |
| 48 '../tests/ChecksumTest.cpp', | 49 '../tests/ChecksumTest.cpp', |
| 49 '../tests/ClampRangeTest.cpp', | 50 '../tests/ClampRangeTest.cpp', |
| 50 '../tests/ClipCacheTest.cpp', | 51 '../tests/ClipCacheTest.cpp', |
| 51 '../tests/ClipCubicTest.cpp', | 52 '../tests/ClipCubicTest.cpp', |
| 52 '../tests/ClipStackTest.cpp', | 53 '../tests/ClipStackTest.cpp', |
| (...skipping 139 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 192 'conditions': [ | 193 'conditions': [ |
| 193 [ 'skia_gpu == 1', { | 194 [ 'skia_gpu == 1', { |
| 194 'include_dirs': [ | 195 'include_dirs': [ |
| 195 '../src/gpu', | 196 '../src/gpu', |
| 196 ], | 197 ], |
| 197 }], | 198 }], |
| 198 ], | 199 ], |
| 199 }, | 200 }, |
| 200 ], | 201 ], |
| 201 } | 202 } |
| OLD | NEW |