2016-01-22 19:21:43 +00:00
|
|
|
# Copyright 2016 Google Inc.
|
|
|
|
#
|
|
|
|
# Use of this source code is governed by a BSD-style license that can be
|
|
|
|
# found in the LICENSE file.
|
|
|
|
# GYP file to build performance testbench.
|
|
|
|
#
|
|
|
|
{
|
|
|
|
'includes': [
|
|
|
|
'apptype_console.gypi',
|
|
|
|
],
|
|
|
|
'targets': [
|
|
|
|
{
|
|
|
|
'target_name': 'skiaserve',
|
|
|
|
'type': 'executable',
|
2016-01-27 19:07:23 +00:00
|
|
|
'include_dirs': [
|
2016-02-02 19:07:39 +00:00
|
|
|
'../src/core',
|
|
|
|
'../src/ports',
|
2016-02-09 20:44:06 +00:00
|
|
|
'../tools/debugger',
|
2016-01-27 19:07:23 +00:00
|
|
|
'../tools/json',
|
|
|
|
],
|
2016-02-02 19:07:39 +00:00
|
|
|
'sources': [
|
|
|
|
# Stuff for the debug canvas
|
2016-02-09 20:44:06 +00:00
|
|
|
'../tools/debugger/SkDrawCommand.h',
|
|
|
|
'../tools/debugger/SkDrawCommand.cpp',
|
|
|
|
'../tools/debugger/SkDebugCanvas.h',
|
|
|
|
'../tools/debugger/SkDebugCanvas.cpp',
|
|
|
|
'../tools/debugger/SkObjectParser.h',
|
|
|
|
'../tools/debugger/SkObjectParser.cpp',
|
|
|
|
'../tools/debugger/SkOverdrawMode.h',
|
|
|
|
'../tools/debugger/SkOverdrawMode.cpp',
|
2016-02-02 19:07:39 +00:00
|
|
|
'<!@(python find.py ../tools/skiaserve "*.cpp")',
|
|
|
|
],
|
2016-01-22 19:21:43 +00:00
|
|
|
'dependencies': [
|
|
|
|
'flags.gyp:flags',
|
|
|
|
'gputest.gyp:skgputest',
|
2016-01-27 19:07:23 +00:00
|
|
|
'json.gyp:json',
|
2016-01-22 19:21:43 +00:00
|
|
|
'jsoncpp.gyp:jsoncpp',
|
2016-01-25 18:50:04 +00:00
|
|
|
'microhttpd.gyp:microhttpd',
|
2016-01-22 19:21:43 +00:00
|
|
|
'skia_lib.gyp:skia_lib',
|
|
|
|
'tools.gyp:crash_handler',
|
|
|
|
'tools.gyp:proc_stats',
|
|
|
|
'tools.gyp:resources',
|
2016-02-08 15:08:21 +00:00
|
|
|
'tools.gyp:url_data_manager',
|
2016-01-22 19:21:43 +00:00
|
|
|
],
|
|
|
|
},
|
|
|
|
],
|
|
|
|
}
|