| 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/pdf', | 14 '../src/pdf', |
| 15 '../src/pipe/utils', | 15 '../src/pipe/utils', |
| 16 '../src/utils', | 16 '../src/utils', |
| 17 '../tools/', | 17 '../tools/', |
| 18 ], | 18 ], |
| 19 'includes': [ | 19 # 'includes': [ |
| 20 'pathops.gypi', | 20 # 'pathops.gypi', |
| 21 'pathops_unittest.gypi', | 21 # 'pathops_unittest.gypi', |
| 22 ], | 22 # ], |
| 23 'sources': [ | 23 'sources': [ |
| 24 '../tests/AAClipTest.cpp', | 24 '../tests/AAClipTest.cpp', |
| 25 '../tests/AnnotationTest.cpp', | 25 '../tests/AnnotationTest.cpp', |
| 26 '../tests/AtomicTest.cpp', | 26 '../tests/AtomicTest.cpp', |
| 27 '../tests/BitmapCopyTest.cpp', | 27 '../tests/BitmapCopyTest.cpp', |
| 28 '../tests/BitmapFactoryTest.cpp', | 28 '../tests/BitmapFactoryTest.cpp', |
| 29 '../tests/BitmapGetColorTest.cpp', | 29 '../tests/BitmapGetColorTest.cpp', |
| 30 '../tests/BitmapHasherTest.cpp', | 30 '../tests/BitmapHasherTest.cpp', |
| 31 '../tests/BitmapHeapTest.cpp', | 31 '../tests/BitmapHeapTest.cpp', |
| 32 '../tests/BitmapTransformerTest.cpp', | 32 '../tests/BitmapTransformerTest.cpp', |
| (...skipping 122 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 155 ], | 155 ], |
| 156 }, | 156 }, |
| 157 ], | 157 ], |
| 158 } | 158 } |
| 159 | 159 |
| 160 # Local Variables: | 160 # Local Variables: |
| 161 # tab-width:2 | 161 # tab-width:2 |
| 162 # indent-tabs-mode:nil | 162 # indent-tabs-mode:nil |
| 163 # End: | 163 # End: |
| 164 # vim: set expandtab tabstop=2 shiftwidth=2: | 164 # vim: set expandtab tabstop=2 shiftwidth=2: |
| OLD | NEW |