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 # GYP file to build performance testbench. | 5 # GYP file to build performance testbench. |
6 # | 6 # |
7 { | 7 { |
8 'includes': [ | 8 'includes': [ |
9 'apptype_console.gypi', | 9 'apptype_console.gypi', |
10 ], | 10 ], |
11 'targets': [ | 11 'targets': [ |
12 { | 12 { |
13 'target_name': 'vulkanviewer', | 13 'target_name': 'viewer', |
14 'type': 'executable', | 14 'type': 'executable', |
15 'includes' : [ | 15 'includes' : [ |
16 'gmslides.gypi', | 16 'gmslides.gypi', |
17 ], | 17 ], |
18 'include_dirs': [ | 18 'include_dirs': [ |
19 '../bench', | 19 '../bench', |
20 '../gm', | 20 '../gm', |
21 '../include/private', | 21 '../include/private', |
22 '../src/core', | 22 '../src/core', |
23 '../src/effects', | 23 '../src/effects', |
24 '../src/gpu', | 24 '../src/gpu', |
25 '../src/images', | 25 '../src/images', |
26 '../src/image', | 26 '../src/image', |
27 '../tools/timer', | 27 '../tools/timer', |
28 ], | 28 ], |
29 'sources': [ | 29 'sources': [ |
30 '../gm/gm.cpp', | 30 '../gm/gm.cpp', |
31 '<!@(python find.py ../tools/vulkan "*.cpp")', | 31 '<!@(python find.py ../tools/viewer "*.cpp")', |
32 ], | 32 ], |
33 'dependencies': [ | 33 'dependencies': [ |
34 'flags.gyp:flags', | 34 'flags.gyp:flags', |
35 'gputest.gyp:skgputest', | 35 'gputest.gyp:skgputest', |
36 'jsoncpp.gyp:jsoncpp', | 36 'jsoncpp.gyp:jsoncpp', |
37 'skia_lib.gyp:skia_lib', | 37 'skia_lib.gyp:skia_lib', |
38 'tools.gyp:crash_handler', | 38 'tools.gyp:crash_handler', |
39 'tools.gyp:proc_stats', | 39 'tools.gyp:proc_stats', |
40 'tools.gyp:resources', | 40 'tools.gyp:resources', |
41 'tools.gyp:sk_tool_utils', | 41 'tools.gyp:sk_tool_utils', |
(...skipping 17 matching lines...) Expand all Loading... |
59 ], | 59 ], |
60 }], | 60 }], |
61 ['skia_os != "win"', { | 61 ['skia_os != "win"', { |
62 'sources/': [ ['exclude', '_win.(h|cpp)$'], | 62 'sources/': [ ['exclude', '_win.(h|cpp)$'], |
63 ], | 63 ], |
64 }], | 64 }], |
65 ], | 65 ], |
66 }, | 66 }, |
67 ], | 67 ], |
68 } | 68 } |
OLD | NEW |