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

Side by Side Diff: gyp/most.gyp

Issue 1903253003: VulkanViewer on Android (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: gyp 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 | « DEPS ('k') | gyp/shaderc.gyp » ('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 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 41 matching lines...) Expand 10 before | Expand all | Expand 10 after
52 ['skia_os == "android"', { 52 ['skia_os == "android"', {
53 'dependencies': [ 53 'dependencies': [
54 'android_system.gyp:SampleApp_APK', 54 'android_system.gyp:SampleApp_APK',
55 ], 55 ],
56 'conditions': [ 56 'conditions': [
57 [ 'skia_gpu == 1', { 57 [ 'skia_gpu == 1', {
58 'dependencies': [ 58 'dependencies': [
59 'android_system.gyp:VisualBench_APK', 59 'android_system.gyp:VisualBench_APK',
60 ], 60 ],
61 }], 61 }],
62 [ 'skia_vulkan == 1', {
63 'dependencies': [
64 'android_system.gyp:VulkanViewer_APK',
65 ],
66 }],
62 ], 67 ],
63 }], 68 }],
64 ['skia_os == "ios"', { 69 ['skia_os == "ios"', {
65 'dependencies!': [ 70 'dependencies!': [
66 'example.gyp:HelloWorld', 71 'example.gyp:HelloWorld',
67 'SampleApp.gyp:SampleApp', 72 'SampleApp.gyp:SampleApp',
68 'visualbench.gyp:visualbench', 73 'visualbench.gyp:visualbench',
69 ], 74 ],
70 'dependencies': ['iOSShell.gyp:iOSShell' ], 75 'dependencies': ['iOSShell.gyp:iOSShell' ],
71 }], 76 }],
72 ['skia_os == "mac" or skia_os == "linux"', { 77 ['skia_os == "mac" or skia_os == "linux"', {
73 'dependencies': [ 78 'dependencies': [
74 'nanomsg.gyp:*' , 79 'nanomsg.gyp:*' ,
75 'skiaserve.gyp:skiaserve', 80 'skiaserve.gyp:skiaserve',
76 ], 81 ],
77 }], 82 }],
78 [ 'skia_vulkan == 0 or skia_os != "win"', { 83 [ 'skia_vulkan == 0 or skia_os != "win" or skia_os != "android"', {
79 'dependencies!': [ 84 'dependencies!': [
80 'vulkanviewer.gyp:vulkanviewer', 85 'vulkanviewer.gyp:vulkanviewer',
81 ], 86 ],
82 }], 87 }],
83 [ 'skia_skip_gui', 88 [ 'skia_skip_gui',
84 { 89 {
85 'dependencies!': [ 90 'dependencies!': [
86 'example.gyp:HelloWorld', 91 'example.gyp:HelloWorld',
87 'SampleApp.gyp:SampleApp', 92 'SampleApp.gyp:SampleApp',
88 'visualbench.gyp:visualbench', 93 'visualbench.gyp:visualbench',
89 ] 94 ]
90 } 95 }
91 ], 96 ],
92 ], 97 ],
93 }, 98 },
94 ], 99 ],
95 } 100 }
OLDNEW
« no previous file with comments | « DEPS ('k') | gyp/shaderc.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698