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

Side by Side Diff: gyp/most.gyp

Issue 1903203003: Get skiaserve working on Windows. (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Fix ws2_32 dependency, build skiaserve w/most on windows 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/microhttpd.gyp ('k') | tools/skiaserve/Request.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 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 54 matching lines...) Expand 10 before | Expand all | Expand 10 after
65 'dependencies!': [ 65 'dependencies!': [
66 'example.gyp:HelloWorld', 66 'example.gyp:HelloWorld',
67 'SampleApp.gyp:SampleApp', 67 'SampleApp.gyp:SampleApp',
68 'visualbench.gyp:visualbench', 68 'visualbench.gyp:visualbench',
69 ], 69 ],
70 'dependencies': ['iOSShell.gyp:iOSShell' ], 70 'dependencies': ['iOSShell.gyp:iOSShell' ],
71 }], 71 }],
72 ['skia_os == "mac" or skia_os == "linux"', { 72 ['skia_os == "mac" or skia_os == "linux"', {
73 'dependencies': [ 73 'dependencies': [
74 'nanomsg.gyp:*' , 74 'nanomsg.gyp:*' ,
75 ],
76 }],
77 ['skia_os in ["linux", "mac", "win"]', {
78 'dependencies': [
75 'skiaserve.gyp:skiaserve', 79 'skiaserve.gyp:skiaserve',
76 ], 80 ],
77 }], 81 }],
78 [ 'skia_vulkan == 0 or skia_os != "win"', { 82 [ 'skia_vulkan == 0 or skia_os != "win"', {
79 'dependencies!': [ 83 'dependencies!': [
80 'vulkanviewer.gyp:vulkanviewer', 84 'vulkanviewer.gyp:vulkanviewer',
81 ], 85 ],
82 }], 86 }],
83 [ 'skia_skip_gui', 87 [ 'skia_skip_gui',
84 { 88 {
85 'dependencies!': [ 89 'dependencies!': [
86 'example.gyp:HelloWorld', 90 'example.gyp:HelloWorld',
87 'SampleApp.gyp:SampleApp', 91 'SampleApp.gyp:SampleApp',
88 'visualbench.gyp:visualbench', 92 'visualbench.gyp:visualbench',
89 ] 93 ]
90 } 94 }
91 ], 95 ],
92 ], 96 ],
93 }, 97 },
94 ], 98 ],
95 } 99 }
OLDNEW
« no previous file with comments | « gyp/microhttpd.gyp ('k') | tools/skiaserve/Request.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698