joshualitt | 7f6a1e0 | 2016-01-22 11:21:43 -0800 | [diff] [blame] | 1 | # Copyright 2016 Google Inc. |
| 2 | # |
| 3 | # Use of this source code is governed by a BSD-style license that can be |
| 4 | # found in the LICENSE file. |
| 5 | # GYP file to build performance testbench. |
| 6 | # |
| 7 | { |
| 8 | 'includes': [ |
| 9 | 'apptype_console.gypi', |
| 10 | ], |
| 11 | 'targets': [ |
| 12 | { |
| 13 | 'target_name': 'skiaserve', |
| 14 | 'type': 'executable', |
joshualitt | 609d979 | 2016-01-27 11:07:23 -0800 | [diff] [blame] | 15 | 'include_dirs': [ |
joshualitt | 136f517 | 2016-02-02 11:07:39 -0800 | [diff] [blame] | 16 | '../src/core', |
bsalomon | 3724e57 | 2016-03-30 18:56:19 -0700 | [diff] [blame] | 17 | '../src/gpu', |
joshualitt | 136f517 | 2016-02-02 11:07:39 -0800 | [diff] [blame] | 18 | '../src/ports', |
ethannicholas | 3cb9542 | 2016-02-09 12:44:06 -0800 | [diff] [blame] | 19 | '../tools/debugger', |
joshualitt | 609d979 | 2016-01-27 11:07:23 -0800 | [diff] [blame] | 20 | '../tools/json', |
| 21 | ], |
joshualitt | 136f517 | 2016-02-02 11:07:39 -0800 | [diff] [blame] | 22 | 'sources': [ |
| 23 | # Stuff for the debug canvas |
ethannicholas | 3cb9542 | 2016-02-09 12:44:06 -0800 | [diff] [blame] | 24 | '../tools/debugger/SkDrawCommand.h', |
| 25 | '../tools/debugger/SkDrawCommand.cpp', |
| 26 | '../tools/debugger/SkDebugCanvas.h', |
| 27 | '../tools/debugger/SkDebugCanvas.cpp', |
brianosman | fad9856 | 2016-05-04 11:06:28 -0700 | [diff] [blame] | 28 | '../tools/debugger/SkJsonWriteBuffer.h', |
| 29 | '../tools/debugger/SkJsonWriteBuffer.cpp', |
ethannicholas | 3cb9542 | 2016-02-09 12:44:06 -0800 | [diff] [blame] | 30 | '../tools/debugger/SkObjectParser.h', |
| 31 | '../tools/debugger/SkObjectParser.cpp', |
| 32 | '../tools/debugger/SkOverdrawMode.h', |
| 33 | '../tools/debugger/SkOverdrawMode.cpp', |
joshualitt | 136f517 | 2016-02-02 11:07:39 -0800 | [diff] [blame] | 34 | '<!@(python find.py ../tools/skiaserve "*.cpp")', |
joshualitt | 3854f11 | 2016-02-25 11:28:18 -0800 | [diff] [blame] | 35 | '<!@(python find.py ../tools/skiaserve/urlhandlers "*.cpp")', |
joshualitt | 136f517 | 2016-02-02 11:07:39 -0800 | [diff] [blame] | 36 | ], |
joshualitt | 7f6a1e0 | 2016-01-22 11:21:43 -0800 | [diff] [blame] | 37 | 'dependencies': [ |
| 38 | 'flags.gyp:flags', |
| 39 | 'gputest.gyp:skgputest', |
| 40 | 'jsoncpp.gyp:jsoncpp', |
ethannicholas | 546d665 | 2016-02-16 11:03:04 -0800 | [diff] [blame] | 41 | 'libpng.gyp:libpng', |
joshualitt | 8cc3f4e | 2016-01-25 10:50:04 -0800 | [diff] [blame] | 42 | 'microhttpd.gyp:microhttpd', |
joshualitt | 7f6a1e0 | 2016-01-22 11:21:43 -0800 | [diff] [blame] | 43 | 'skia_lib.gyp:skia_lib', |
| 44 | 'tools.gyp:crash_handler', |
brianosman | 7831295 | 2016-04-19 10:16:53 -0700 | [diff] [blame] | 45 | 'tools.gyp:picture_utils', |
joshualitt | 7f6a1e0 | 2016-01-22 11:21:43 -0800 | [diff] [blame] | 46 | 'tools.gyp:proc_stats', |
| 47 | 'tools.gyp:resources', |
joshualitt | cdad12f | 2016-02-08 07:08:21 -0800 | [diff] [blame] | 48 | 'tools.gyp:url_data_manager', |
joshualitt | 7f6a1e0 | 2016-01-22 11:21:43 -0800 | [diff] [blame] | 49 | ], |
joshualitt | 7f6a1e0 | 2016-01-22 11:21:43 -0800 | [diff] [blame] | 50 | }, |
| 51 | ], |
| 52 | } |