OLD | NEW |
1 # Copyright 2015 Google Inc. | 1 # Copyright 2015 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 # GYP file to build pathops skp clip test. | 5 # GYP file to build pathops skp clip test. |
6 { | 6 { |
7 'includes': [ | 7 'includes': [ |
8 'apptype_console.gypi', | 8 'apptype_console.gypi', |
9 ], | 9 ], |
10 'targets': [ | 10 'targets': [ |
11 { | 11 { |
12 'target_name': 'pathops_skpclip', | 12 'target_name': 'pathops_skpclip', |
13 'type': 'executable', | 13 'type': 'executable', |
14 'include_dirs': [ | 14 'include_dirs': [ |
15 '../include/private', | 15 '../include/private', |
16 '../src/core', | 16 '../src/core', |
17 '../src/effects', | 17 '../src/effects', |
18 '../src/lazy', | 18 '../src/lazy', |
19 '../src/pathops', | 19 '../src/pathops', |
20 '../src/pipe/utils', | |
21 '../src/utils', | 20 '../src/utils', |
22 ], | 21 ], |
23 'dependencies': [ | 22 'dependencies': [ |
24 'flags.gyp:flags', | 23 'flags.gyp:flags', |
25 'skia_lib.gyp:skia_lib', | 24 'skia_lib.gyp:skia_lib', |
26 'tools.gyp:crash_handler', | 25 'tools.gyp:crash_handler', |
27 'tools.gyp:resources', | 26 'tools.gyp:resources', |
28 ], | 27 ], |
29 'sources': [ | 28 'sources': [ |
30 '../tests/PathOpsDebug.cpp', | 29 '../tests/PathOpsDebug.cpp', |
(...skipping 11 matching lines...) Expand all Loading... |
42 }], | 41 }], |
43 [ 'skia_gpu == 1', { | 42 [ 'skia_gpu == 1', { |
44 'include_dirs': [ | 43 'include_dirs': [ |
45 '../src/gpu', | 44 '../src/gpu', |
46 ], | 45 ], |
47 }], | 46 }], |
48 ], | 47 ], |
49 }, | 48 }, |
50 ], | 49 ], |
51 } | 50 } |
OLD | NEW |