OLD | NEW |
1 { | 1 { |
2 'targets': [ | 2 'targets': [ |
3 { | 3 { |
4 'configurations': { | 4 'configurations': { |
5 'Debug': { }, | 5 'Debug': { }, |
6 'Release': { } | 6 'Release': { } |
7 }, | 7 }, |
8 'cflags!': [ | 8 'cflags!': [ |
9 '-Werror' | 9 '-Werror' |
10 ], | 10 ], |
11 'target_name': '{{.Hash}}', | 11 'target_name': '{{.Hash}}', |
12 'type': 'executable', | 12 'type': 'executable', |
13 'dependencies': [ | 13 'dependencies': [ |
14 'skia_lib.gyp:skia_lib', | 14 'skia_lib.gyp:skia_lib', |
15 'flags.gyp:flags', | 15 'flags.gyp:flags', |
16 'tools.gyp:sk_tool_utils' | 16 'tools.gyp:sk_tool_utils' |
17 | 17 |
18 ], | 18 ], |
19 'include_dirs': [ | 19 'include_dirs': [ |
20 '../include/config', | 20 '../include/config', |
21 '../include/core', | 21 '../include/core', |
| 22 '../include/gpu', |
22 '../tools/flags', | 23 '../tools/flags', |
23 '../src/core', | 24 '../src/core', |
24 ], | 25 ], |
25 'conditions': [ | 26 'conditions': [ |
26 ['skia_os == "mac"', { | 27 ['skia_os == "mac"', { |
27 'defines': ['SK_UNSAFE_BUILD_DESKTOP_ONLY=1'] | 28 'defines': ['SK_UNSAFE_BUILD_DESKTOP_ONLY=1'] |
28 }] | 29 }] |
29 ], | 30 ], |
30 'sources': [ | 31 'sources': [ |
31 '../../cache/src/{{.Hash}}.cpp', | 32 '../../cache/src/{{.Hash}}.cpp', |
32 '../experimental/webtry/main.cpp' | 33 '../experimental/webtry/main.cpp' |
33 ], | 34 ], |
34 } | 35 } |
35 ] | 36 ] |
36 } | 37 } |
OLD | NEW |