| 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 'sources': [ | 15 'sources': [ |
| 16 '<!@(python find.py ../tools/skiaserve "*.cpp")', | 16 '<!@(python find.py ../tools/skiaserve "*.cpp")', |
| 17 ], | 17 ], |
| 18 'include_dirs': [ |
| 19 '../tools/json', |
| 20 ], |
| 18 'dependencies': [ | 21 'dependencies': [ |
| 19 'flags.gyp:flags', | 22 'flags.gyp:flags', |
| 20 'gputest.gyp:skgputest', | 23 'gputest.gyp:skgputest', |
| 24 'json.gyp:json', |
| 21 'jsoncpp.gyp:jsoncpp', | 25 'jsoncpp.gyp:jsoncpp', |
| 22 'microhttpd.gyp:microhttpd', | 26 'microhttpd.gyp:microhttpd', |
| 23 'skia_lib.gyp:skia_lib', | 27 'skia_lib.gyp:skia_lib', |
| 24 'tools.gyp:crash_handler', | 28 'tools.gyp:crash_handler', |
| 25 'tools.gyp:proc_stats', | 29 'tools.gyp:proc_stats', |
| 26 'tools.gyp:resources', | 30 'tools.gyp:resources', |
| 27 ], | 31 ], |
| 28 }, | 32 }, |
| 29 ], | 33 ], |
| 30 } | 34 } |
| OLD | NEW |