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/opts', |
14 '../src/pathops', | 15 '../src/pathops', |
15 '../src/pdf', | 16 '../src/pdf', |
16 '../src/pipe/utils', | 17 '../src/pipe/utils', |
17 '../src/utils', | 18 '../src/utils', |
18 '../tools/', | 19 '../tools/', |
19 ], | 20 ], |
20 'includes': [ | 21 'includes': [ |
21 'pathops_unittest.gypi', | 22 'pathops_unittest.gypi', |
22 ], | 23 ], |
23 'sources': [ | 24 'sources': [ |
(...skipping 140 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
164 ], | 165 ], |
165 }, | 166 }, |
166 ], | 167 ], |
167 } | 168 } |
168 | 169 |
169 # Local Variables: | 170 # Local Variables: |
170 # tab-width:2 | 171 # tab-width:2 |
171 # indent-tabs-mode:nil | 172 # indent-tabs-mode:nil |
172 # End: | 173 # End: |
173 # vim: set expandtab tabstop=2 shiftwidth=2: | 174 # vim: set expandtab tabstop=2 shiftwidth=2: |
OLD | NEW |