| 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' : [ |
| 11 '../src/core', | 11 '../src/core', |
| 12 '../src/effects', | 12 '../src/effects', |
| 13 '../src/lazy', | 13 '../src/lazy', |
| 14 '../src/pathops', | 14 '../src/pathops', |
| 15 '../src/pdf', | 15 '../src/pdf', |
| 16 '../src/pipe/utils', | 16 '../src/pipe/utils', |
| 17 '../src/utils', | 17 '../src/utils', |
| 18 '../tools/', | 18 '../tools/', |
| 19 ], | 19 ], |
| 20 'includes': [ | 20 'includes': [ |
| 21 'pathops_unittest.gypi', | 21 'pathops_unittest.gypi', |
| 22 ], | 22 ], |
| 23 'sources': [ | 23 'sources': [ |
| 24 '../tests/AAClipTest.cpp', | 24 '../tests/AAClipTest.cpp', |
| 25 '../tests/AndroidPaintTest.cpp', |
| 25 '../tests/AnnotationTest.cpp', | 26 '../tests/AnnotationTest.cpp', |
| 26 '../tests/ARGBImageEncoderTest.cpp', | 27 '../tests/ARGBImageEncoderTest.cpp', |
| 27 '../tests/AtomicTest.cpp', | 28 '../tests/AtomicTest.cpp', |
| 28 '../tests/BitmapCopyTest.cpp', | 29 '../tests/BitmapCopyTest.cpp', |
| 29 '../tests/BitmapFactoryTest.cpp', | 30 '../tests/BitmapFactoryTest.cpp', |
| 30 '../tests/BitmapGetColorTest.cpp', | 31 '../tests/BitmapGetColorTest.cpp', |
| 31 '../tests/BitmapHasherTest.cpp', | 32 '../tests/BitmapHasherTest.cpp', |
| 32 '../tests/BitmapHeapTest.cpp', | 33 '../tests/BitmapHeapTest.cpp', |
| 33 '../tests/BitSetTest.cpp', | 34 '../tests/BitSetTest.cpp', |
| 34 '../tests/BlitRowTest.cpp', | 35 '../tests/BlitRowTest.cpp', |
| (...skipping 132 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 167 ], | 168 ], |
| 168 }, | 169 }, |
| 169 ], | 170 ], |
| 170 } | 171 } |
| 171 | 172 |
| 172 # Local Variables: | 173 # Local Variables: |
| 173 # tab-width:2 | 174 # tab-width:2 |
| 174 # indent-tabs-mode:nil | 175 # indent-tabs-mode:nil |
| 175 # End: | 176 # End: |
| 176 # vim: set expandtab tabstop=2 shiftwidth=2: | 177 # vim: set expandtab tabstop=2 shiftwidth=2: |
| OLD | NEW |