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 63 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
74 '../tests/FontMgrTest.cpp', | 74 '../tests/FontMgrTest.cpp', |
75 '../tests/FontNamesTest.cpp', | 75 '../tests/FontNamesTest.cpp', |
76 '../tests/FrontBufferedStreamTest.cpp', | 76 '../tests/FrontBufferedStreamTest.cpp', |
77 '../tests/GLInterfaceValidation.cpp', | 77 '../tests/GLInterfaceValidation.cpp', |
78 '../tests/GLProgramsTest.cpp', | 78 '../tests/GLProgramsTest.cpp', |
79 '../tests/GeometryTest.cpp', | 79 '../tests/GeometryTest.cpp', |
80 '../tests/GifTest.cpp', | 80 '../tests/GifTest.cpp', |
81 '../tests/GpuBitmapCopyTest.cpp', | 81 '../tests/GpuBitmapCopyTest.cpp', |
82 '../tests/GpuColorFilterTest.cpp', | 82 '../tests/GpuColorFilterTest.cpp', |
83 '../tests/GpuDrawPathTest.cpp', | 83 '../tests/GpuDrawPathTest.cpp', |
| 84 '../tests/GrBinHashKeyTest.cpp', |
84 '../tests/GrContextFactoryTest.cpp', | 85 '../tests/GrContextFactoryTest.cpp', |
85 '../tests/GrDrawTargetTest.cpp', | 86 '../tests/GrDrawTargetTest.cpp', |
86 '../tests/GrMemoryPoolTest.cpp', | 87 '../tests/GrMemoryPoolTest.cpp', |
87 '../tests/GrRedBlackTreeTest.cpp', | 88 '../tests/GrRedBlackTreeTest.cpp', |
88 '../tests/GrSurfaceTest.cpp', | 89 '../tests/GrSurfaceTest.cpp', |
89 '../tests/GrUnitTests.cpp', | 90 '../tests/GrTBSearchTest.cpp', |
90 '../tests/GradientTest.cpp', | 91 '../tests/GradientTest.cpp', |
91 '../tests/HashCacheTest.cpp', | 92 '../tests/HashCacheTest.cpp', |
92 '../tests/ImageCacheTest.cpp', | 93 '../tests/ImageCacheTest.cpp', |
93 '../tests/ImageDecodingTest.cpp', | 94 '../tests/ImageDecodingTest.cpp', |
94 '../tests/ImageFilterTest.cpp', | 95 '../tests/ImageFilterTest.cpp', |
95 '../tests/InfRectTest.cpp', | 96 '../tests/InfRectTest.cpp', |
96 '../tests/JpegTest.cpp', | 97 '../tests/JpegTest.cpp', |
97 '../tests/LListTest.cpp', | 98 '../tests/LListTest.cpp', |
98 '../tests/LayerDrawLooperTest.cpp', | 99 '../tests/LayerDrawLooperTest.cpp', |
99 '../tests/MD5Test.cpp', | 100 '../tests/MD5Test.cpp', |
(...skipping 79 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
179 'conditions': [ | 180 'conditions': [ |
180 [ 'skia_gpu == 1', { | 181 [ 'skia_gpu == 1', { |
181 'include_dirs': [ | 182 'include_dirs': [ |
182 '../src/gpu', | 183 '../src/gpu', |
183 ], | 184 ], |
184 }], | 185 }], |
185 ], | 186 ], |
186 }, | 187 }, |
187 ], | 188 ], |
188 } | 189 } |
OLD | NEW |