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