| 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', | |
| 23 '../tools/flags', | 22 '../tools/flags', |
| 24 '../src/core', | 23 '../src/core', |
| 25 ], | 24 ], |
| 26 'conditions': [ | 25 'conditions': [ |
| 27 ['skia_os == "mac"', { | 26 ['skia_os == "mac"', { |
| 28 'defines': ['SK_UNSAFE_BUILD_DESKTOP_ONLY=1'] | 27 'defines': ['SK_UNSAFE_BUILD_DESKTOP_ONLY=1'] |
| 29 }] | 28 }] |
| 30 ], | 29 ], |
| 31 'sources': [ | 30 'sources': [ |
| 32 '../../cache/src/{{.Hash}}.cpp', | 31 '../../cache/src/{{.Hash}}.cpp', |
| 33 '../experimental/webtry/main.cpp' | 32 '../experimental/webtry/main.cpp' |
| 34 ], | 33 ], |
| 35 } | 34 } |
| 36 ] | 35 ] |
| 37 } | 36 } |
| OLD | NEW |