| OLD | NEW |
| 1 # Copyright 2016 Google Inc. | 1 # Copyright 2016 Google Inc. |
| 2 # | 2 # |
| 3 # Use of this source code is governed by a BSD-style license that can be | 3 # Use of this source code is governed by a BSD-style license that can be |
| 4 # found in the LICENSE file. | 4 # found in the LICENSE file. |
| 5 | 5 |
| 6 { | 6 { |
| 7 'includes': [ 'apptype_console.gypi' ], | 7 'includes': [ 'apptype_console.gypi' ], |
| 8 'targets': [{ | 8 'targets': [{ |
| 9 'target_name': 'fuzz', | 9 'target_name': 'fuzz', |
| 10 'type': 'executable', | 10 'type': 'executable', |
| 11 'defines': [ | 11 'defines': [ |
| 12 'SK_FUZZ_LOGGING', | 12 'SK_FUZZ_LOGGING', |
| 13 ], | 13 ], |
| 14 'sources': [ '<!@(python find.py ../fuzz "*.cpp")' ], | 14 'sources': [ |
| 15 '<!@(python find.py ../fuzz "*.cpp")', |
| 16 '../tests/PathOpsDebug.cpp', |
| 17 ], |
| 15 'dependencies': [ | 18 'dependencies': [ |
| 16 'flags.gyp:flags', | 19 'flags.gyp:flags', |
| 17 'skia_lib.gyp:skia_lib', | 20 'skia_lib.gyp:skia_lib', |
| 18 ], | 21 ], |
| 19 'include_dirs': [ | 22 'include_dirs': [ |
| 23 '../include/private', |
| 20 '../src/core', | 24 '../src/core', |
| 25 '../src/pathops', |
| 21 ], | 26 ], |
| 22 }], | 27 }], |
| 23 } | 28 } |
| OLD | NEW |