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

Side by Side Diff: gyp/most.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 | « no previous file | gyp/vulkanviewer.gyp » ('j') | gyp/vulkanviewer.gyp » ('J')
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright 2015 Google Inc. 1 # Copyright 2015 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 # Build ALMOST everything provided by Skia; this should be the default target. 5 # Build ALMOST everything provided by Skia; this should be the default target.
6 # 6 #
7 # This omits the following targets that many developers won't want to build: 7 # This omits the following targets that many developers won't want to build:
8 # - debugger: this requires QT to build 8 # - debugger: this requires QT to build
9 # 9 #
10 { 10 {
(...skipping 11 matching lines...) Expand all
22 'bench.gyp:*', 22 'bench.gyp:*',
23 'example.gyp:HelloWorld', 23 'example.gyp:HelloWorld',
24 'SampleApp.gyp:SampleApp', 24 'SampleApp.gyp:SampleApp',
25 'tools.gyp:tools', 25 'tools.gyp:tools',
26 'pathops_unittest.gyp:*', 26 'pathops_unittest.gyp:*',
27 'pathops_skpclip.gyp:*', 27 'pathops_skpclip.gyp:*',
28 'dm.gyp:dm', 28 'dm.gyp:dm',
29 'visualbench.gyp:visualbench', 29 'visualbench.gyp:visualbench',
30 'fuzz.gyp:fuzz', 30 'fuzz.gyp:fuzz',
31 'kilobench.gyp:kilobench', 31 'kilobench.gyp:kilobench',
32 'vulkanviewer.gyp:vulkanviewer',
32 ], 33 ],
33 'conditions': [ 34 'conditions': [
34 [ 'skia_gpu == 0', { 35 [ 'skia_gpu == 0', {
35 'dependencies!': [ 36 'dependencies!': [
36 'visualbench.gyp:visualbench', 37 'visualbench.gyp:visualbench',
37 'kilobench.gyp:kilobench', 38 'kilobench.gyp:kilobench',
39 'vulkanviewer.gyp:vulkanviewer',
38 ] 40 ]
39 }], 41 }],
40 [ 'skia_os != "android" and skia_os != "linux"', { 42 [ 'skia_os != "android" and skia_os != "linux"', {
41 'dependencies!': [ 43 'dependencies!': [
42 'kilobench.gyp:kilobench', 44 'kilobench.gyp:kilobench',
43 ], 45 ],
44 }], 46 }],
45 [ 'skia_gpu == 0 or skia_os == "android"', { 47 [ 'skia_gpu == 0 or skia_os == "android"', {
46 'dependencies!': [ 48 'dependencies!': [
47 'example.gyp:HelloWorld', 49 'example.gyp:HelloWorld',
(...skipping 18 matching lines...) Expand all
66 'visualbench.gyp:visualbench', 68 'visualbench.gyp:visualbench',
67 ], 69 ],
68 'dependencies': ['iOSShell.gyp:iOSShell' ], 70 'dependencies': ['iOSShell.gyp:iOSShell' ],
69 }], 71 }],
70 ['skia_os == "mac" or skia_os == "linux"', { 72 ['skia_os == "mac" or skia_os == "linux"', {
71 'dependencies': [ 73 'dependencies': [
72 'nanomsg.gyp:*' , 74 'nanomsg.gyp:*' ,
73 'skiaserve.gyp:skiaserve', 75 'skiaserve.gyp:skiaserve',
74 ], 76 ],
75 }], 77 }],
78 [ 'skia_vulkan == 0 or skia_os != "win"', {
79 'dependencies!': [
80 'vulkanviewer.gyp:vulkanviewer',
81 ],
82 }],
76 [ 'skia_skip_gui', 83 [ 'skia_skip_gui',
77 { 84 {
78 'dependencies!': [ 85 'dependencies!': [
79 'example.gyp:HelloWorld', 86 'example.gyp:HelloWorld',
80 'SampleApp.gyp:SampleApp', 87 'SampleApp.gyp:SampleApp',
81 'visualbench.gyp:visualbench', 88 'visualbench.gyp:visualbench',
82 ] 89 ]
83 } 90 }
84 ], 91 ],
85 ], 92 ],
86 }, 93 },
87 ], 94 ],
88 } 95 }
OLDNEW
« no previous file with comments | « no previous file | gyp/vulkanviewer.gyp » ('j') | gyp/vulkanviewer.gyp » ('J')

Powered by Google App Engine
This is Rietveld 408576698