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

Side by Side Diff: gyp/visualbench.gyp

Issue 1151333004: CL to add setFullscreen and setVsync to SkWindow (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: tweaks Created 5 years, 6 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
OLDNEW
(Empty)
1 # Copyright 2015 Google Inc.
2 #
3 # Use of this source code is governed by a BSD-style license that can be
4 # found in the LICENSE file.
robertphillips 2015/05/26 21:07:27 build "visual bench tool" ?
joshualitt 2015/05/27 14:09:34 Acknowledged.
5 # GYP file to build hello world example.
6 {
7 'targets': [
8 {
9 'target_name': 'visualbench',
10 'type': 'executable',
11 'mac_bundle' : 1,
12 'include_dirs' : [
13 '../include/gpu',
14 '../src/images',
15 ],
16 'sources': [
17 '../tools/VisualBench.h',
18 '../tools/VisualBench.cpp',
19 '../src/images/SkForceLinking.cpp',
20 ],
21 'dependencies': [
22 'flags.gyp:flags_common',
23 'images.gyp:images',
24 'skia_lib.gyp:skia_lib',
25 'tools.gyp:timer',
26 'views.gyp:views',
27 ],
28 'conditions' : [
29 [ 'skia_os == "win"', {
30 'sources' : [
31 '../src/views/win/SkOSWindow_Win.cpp',
32 '../src/views/win/skia_win.cpp',
33 ],
34 }],
35 ],
36 },
37 ],
38 }
OLDNEW
« no previous file with comments | « gyp/most.gyp ('k') | include/views/SkOSWindow_Unix.h » ('j') | src/views/mac/SkOSWindow_Mac.cpp » ('J')

Powered by Google App Engine
This is Rietveld 408576698