Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(128)

Side by Side Diff: gyp/vulkanviewer.gyp

Issue 1848833005: First pass at VulkanViewer (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Address comments, plus add GM rendering Created 4 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « gyp/most.gyp ('k') | src/gpu/vk/GrVkBackendContext.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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': 'kilobench', 13 'target_name': 'vulkanviewer',
14 'type': 'executable', 14 'type': 'executable',
15 'includes' : [
16 'gmslides.gypi',
17 ],
15 'include_dirs': [ 18 'include_dirs': [
16 '../bench', 19 '../bench',
17 '../gm', 20 '../gm',
18 '../include/private', 21 '../include/private',
19 '../src/core', 22 '../src/core',
23 '../src/effects',
20 '../src/gpu', 24 '../src/gpu',
21 '../tools/VisualBench', 25 '../src/images',
26 '../src/image',
22 ], 27 ],
23 'sources': [ 28 'sources': [
24 '<!@(python find.py ../tools/kilobench "*.cpp")', 29 '../gm/gm.cpp',
25 '../bench/Benchmark.cpp', 30 '<!@(python find.py ../tools/vulkan "*.cpp")',
bsalomon 2016/04/05 18:47:57 I should have thought of this earlier but do you w
jvanverth1 2016/04/05 19:00:39 Sure, how would I do that?
26 '../tools/VisualBench/VisualSKPBench.cpp',
27 ], 31 ],
28 'dependencies': [ 32 'dependencies': [
29 'flags.gyp:flags', 33 'flags.gyp:flags',
30 'gpu.gyp:skgpu',
31 'gputest.gyp:skgputest', 34 'gputest.gyp:skgputest',
32 'jsoncpp.gyp:jsoncpp', 35 'jsoncpp.gyp:jsoncpp',
33 'skia_lib.gyp:skia_lib', 36 'skia_lib.gyp:skia_lib',
34 'tools.gyp:crash_handler', 37 'tools.gyp:crash_handler',
35 'tools.gyp:proc_stats', 38 'tools.gyp:proc_stats',
36 'tools.gyp:resources', 39 'tools.gyp:resources',
40 'tools.gyp:sk_tool_utils',
37 'tools.gyp:timer', 41 'tools.gyp:timer',
42 'tools.gyp:url_data_manager',
38 ], 43 ],
39 }, 44 },
40 ], 45 ],
41 } 46 }
OLDNEW
« no previous file with comments | « gyp/most.gyp ('k') | src/gpu/vk/GrVkBackendContext.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698