| 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', |
| (...skipping 102 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 113 '../tests/PathOpsQuadIntersectionTestData.h', | 113 '../tests/PathOpsQuadIntersectionTestData.h', |
| 114 '../tests/PathOpsTestCommon.h', | 114 '../tests/PathOpsTestCommon.h', |
| 115 '../tests/PathOpsThreadedCommon.h', | 115 '../tests/PathOpsThreadedCommon.h', |
| 116 '../tests/Test.cpp', | 116 '../tests/Test.cpp', |
| 117 '../tests/skia_test.cpp', | 117 '../tests/skia_test.cpp', |
| 118 '../tests/Test.h', | 118 '../tests/Test.h', |
| 119 ], | 119 ], |
| 120 'dependencies': [ | 120 'dependencies': [ |
| 121 'skia_base_libs.gyp:skia_base_libs', | 121 'skia_base_libs.gyp:skia_base_libs', |
| 122 'effects.gyp:effects', | 122 'effects.gyp:effects', |
| 123 'flags.gyp:flags', |
| 123 'images.gyp:images', | 124 'images.gyp:images', |
| 124 'utils.gyp:utils', | 125 'utils.gyp:utils', |
| 125 ], | 126 ], |
| 126 'conditions': [ | 127 'conditions': [ |
| 127 [ 'skia_gpu == 1', { | 128 [ 'skia_gpu == 1', { |
| 128 'include_dirs': [ | 129 'include_dirs': [ |
| 129 '../src/gpu', | 130 '../src/gpu', |
| 130 ], | 131 ], |
| 131 }], | 132 }], |
| 132 ], | 133 ], |
| 133 }, | 134 }, |
| 134 ], | 135 ], |
| 135 } | 136 } |
| 136 | 137 |
| 137 # Local Variables: | 138 # Local Variables: |
| 138 # tab-width:2 | 139 # tab-width:2 |
| 139 # indent-tabs-mode:nil | 140 # indent-tabs-mode:nil |
| 140 # End: | 141 # End: |
| 141 # vim: set expandtab tabstop=2 shiftwidth=2: | 142 # vim: set expandtab tabstop=2 shiftwidth=2: |
| OLD | NEW |