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

Side by Side Diff: gyp/views.gyp

Issue 1815823002: Move SkGLContext and some GrGLInterface implementations to skgputest module (Closed) Base URL: https://chromium.googlesource.com/skia.git@debugobject
Patch Set: fix windows and android? 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/skiaserve.gyp ('k') | gyp/visualbench.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 # Views is the Skia windowing toolkit. 5 # Views is the Skia windowing toolkit.
6 # It provides: 6 # It provides:
7 # * A portable means of creating native windows. 7 # * A portable means of creating native windows.
8 # * Events. 8 # * Events.
9 # * Basic widgets and controls. 9 # * Basic widgets and controls.
10 10
(...skipping 107 matching lines...) Expand 10 before | Expand all | Expand 10 after
118 'sources!': [ 118 'sources!': [
119 '../src/views/win/SkOSWindow_win.cpp', 119 '../src/views/win/SkOSWindow_win.cpp',
120 '../src/views/win/skia_win.cpp', 120 '../src/views/win/skia_win.cpp',
121 ], 121 ],
122 }], 122 }],
123 [ 'skia_gpu == 1', { 123 [ 'skia_gpu == 1', {
124 'include_dirs': [ 124 'include_dirs': [
125 '../include/gpu', 125 '../include/gpu',
126 ], 126 ],
127 }], 127 }],
128 [ 'skia_angle', {
129 'dependencies': [
130 'angle.gyp:*',
131 ],
132 }],
128 [ 'skia_use_sdl == 1', { 133 [ 'skia_use_sdl == 1', {
129 'defines': [ 134 'defines': [
130 'SK_USE_SDL', 135 'SK_USE_SDL',
131 ], 136 ],
132 'dependencies': [ 137 'dependencies': [
133 'sdl.gyp:sdl', 138 'sdl.gyp:sdl',
134 ], 139 ],
135 'sources!': [ 140 'sources!': [
136 # linux sources 141 # linux sources
137 '../src/views/unix/SkOSWindow_Unix.cpp', 142 '../src/views/unix/SkOSWindow_Unix.cpp',
(...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after
176 'include_dirs': [ 181 'include_dirs': [
177 '../include/views', 182 '../include/views',
178 ], 183 ],
179 }, 184 },
180 'export_dependent_settings': [ 185 'export_dependent_settings': [
181 'xml.gyp:xml', 186 'xml.gyp:xml',
182 ], 187 ],
183 }, 188 },
184 ], 189 ],
185 } 190 }
OLDNEW
« no previous file with comments | « gyp/skiaserve.gyp ('k') | gyp/visualbench.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698