| 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/image', | 
| 13         '../src/lazy', | 14         '../src/lazy', | 
| 14         '../src/pdf', | 15         '../src/pdf', | 
| 15         '../src/pipe/utils', | 16         '../src/pipe/utils', | 
| 16         '../src/utils', | 17         '../src/utils', | 
| 17         '../tools/', | 18         '../tools/', | 
| 18       ], | 19       ], | 
| 19       'sources': [ | 20       'sources': [ | 
| 20         '../tests/AAClipTest.cpp', | 21         '../tests/AAClipTest.cpp', | 
| 21         '../tests/AnnotationTest.cpp', | 22         '../tests/AnnotationTest.cpp', | 
| 22         '../tests/AtomicTest.cpp', | 23         '../tests/AtomicTest.cpp', | 
| (...skipping 124 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
| 147       ], | 148       ], | 
| 148     }, | 149     }, | 
| 149   ], | 150   ], | 
| 150 } | 151 } | 
| 151 | 152 | 
| 152 # Local Variables: | 153 # Local Variables: | 
| 153 # tab-width:2 | 154 # tab-width:2 | 
| 154 # indent-tabs-mode:nil | 155 # indent-tabs-mode:nil | 
| 155 # End: | 156 # End: | 
| 156 # vim: set expandtab tabstop=2 shiftwidth=2: | 157 # vim: set expandtab tabstop=2 shiftwidth=2: | 
| OLD | NEW | 
|---|