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': 'skiaserve', | 13 'target_name': 'skiaserve', |
14 'type': 'executable', | 14 'type': 'executable', |
15 'include_dirs': [ | 15 'include_dirs': [ |
16 '../src/core', | 16 '../src/core', |
17 '../src/gpu', | 17 '../src/gpu', |
18 '../src/ports', | 18 '../src/ports', |
19 '../tools/debugger', | 19 '../tools/debugger', |
20 '../tools/json', | 20 '../tools/json', |
21 ], | 21 ], |
22 'sources': [ | 22 'sources': [ |
23 # Stuff for the debug canvas | 23 # Stuff for the debug canvas |
24 '../tools/debugger/SkDrawCommand.h', | 24 '../tools/debugger/SkDrawCommand.h', |
25 '../tools/debugger/SkDrawCommand.cpp', | 25 '../tools/debugger/SkDrawCommand.cpp', |
26 '../tools/debugger/SkDebugCanvas.h', | 26 '../tools/debugger/SkDebugCanvas.h', |
27 '../tools/debugger/SkDebugCanvas.cpp', | 27 '../tools/debugger/SkDebugCanvas.cpp', |
| 28 '../tools/debugger/SkJsonWriteBuffer.h', |
| 29 '../tools/debugger/SkJsonWriteBuffer.cpp', |
28 '../tools/debugger/SkObjectParser.h', | 30 '../tools/debugger/SkObjectParser.h', |
29 '../tools/debugger/SkObjectParser.cpp', | 31 '../tools/debugger/SkObjectParser.cpp', |
30 '../tools/debugger/SkOverdrawMode.h', | 32 '../tools/debugger/SkOverdrawMode.h', |
31 '../tools/debugger/SkOverdrawMode.cpp', | 33 '../tools/debugger/SkOverdrawMode.cpp', |
32 '<!@(python find.py ../tools/skiaserve "*.cpp")', | 34 '<!@(python find.py ../tools/skiaserve "*.cpp")', |
33 '<!@(python find.py ../tools/skiaserve/urlhandlers "*.cpp")', | 35 '<!@(python find.py ../tools/skiaserve/urlhandlers "*.cpp")', |
34 ], | 36 ], |
35 'dependencies': [ | 37 'dependencies': [ |
36 'flags.gyp:flags', | 38 'flags.gyp:flags', |
37 'gputest.gyp:skgputest', | 39 'gputest.gyp:skgputest', |
38 'jsoncpp.gyp:jsoncpp', | 40 'jsoncpp.gyp:jsoncpp', |
39 'libpng.gyp:libpng', | 41 'libpng.gyp:libpng', |
40 'microhttpd.gyp:microhttpd', | 42 'microhttpd.gyp:microhttpd', |
41 'skia_lib.gyp:skia_lib', | 43 'skia_lib.gyp:skia_lib', |
42 'tools.gyp:crash_handler', | 44 'tools.gyp:crash_handler', |
43 'tools.gyp:picture_utils', | 45 'tools.gyp:picture_utils', |
44 'tools.gyp:proc_stats', | 46 'tools.gyp:proc_stats', |
45 'tools.gyp:resources', | 47 'tools.gyp:resources', |
46 'tools.gyp:url_data_manager', | 48 'tools.gyp:url_data_manager', |
47 ], | 49 ], |
48 }, | 50 }, |
49 ], | 51 ], |
50 } | 52 } |
OLD | NEW |