| 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': 'pathops_unittest', | 8 'target_name': 'pathops_unittest', |
| 9 'type': 'executable', | 9 'type': 'executable', |
| 10 'suppress_wildcard': '1', | 10 'suppress_wildcard': '1', |
| 11 'include_dirs' : [ | 11 'include_dirs' : [ |
| 12 '../src/core', | 12 '../src/core', |
| 13 '../src/effects', | 13 '../src/effects', |
| 14 '../src/lazy', | 14 '../src/lazy', |
| 15 '../src/pathops', | 15 '../src/pathops', |
| 16 '../src/pdf', | 16 '../src/pdf', |
| 17 '../src/pipe/utils', | 17 '../src/pipe/utils', |
| 18 '../src/utils', | 18 '../src/utils', |
| 19 '../tools/', | 19 '../tools/', |
| 20 ], | 20 ], |
| 21 'includes': [ | 21 'includes': [ |
| 22 'pathops_unittest.gypi', | 22 'pathops_unittest.gypi', |
| 23 ], | 23 ], |
| 24 'sources': [ | 24 'sources': [ |
| 25 '../tests/PathOpsAngleIdeas.cpp', | 25 '../tests/PathOpsAngleIdeas.cpp', |
| 26 '../tests/PathOpsDebug.cpp', | 26 '../tests/PathOpsDebug.cpp', |
| 27 '../tests/PathOpsOpLoopThreadedTest.cpp', |
| 27 '../tests/PathOpsSkpClipTest.cpp', | 28 '../tests/PathOpsSkpClipTest.cpp', |
| 28 '../tests/Test.cpp', | 29 '../tests/Test.cpp', |
| 29 '../tests/skia_test.cpp', | 30 '../tests/skia_test.cpp', |
| 30 '../tests/Test.h', | 31 '../tests/Test.h', |
| 31 ], | 32 ], |
| 32 'dependencies': [ | 33 'dependencies': [ |
| 33 'skia_lib.gyp:skia_lib', | 34 'skia_lib.gyp:skia_lib', |
| 34 'flags.gyp:flags', | 35 'flags.gyp:flags', |
| 35 ], | 36 ], |
| 36 'conditions': [ | 37 'conditions': [ |
| 37 [ 'skia_gpu == 1', { | 38 [ 'skia_gpu == 1', { |
| 38 'include_dirs': [ | 39 'include_dirs': [ |
| 39 '../src/gpu', | 40 '../src/gpu', |
| 40 ], | 41 ], |
| 41 }], | 42 }], |
| 42 ], | 43 ], |
| 43 }, | 44 }, |
| 44 ], | 45 ], |
| 45 } | 46 } |
| OLD | NEW |