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

Side by Side Diff: gyp/SampleApp.gyp

Issue 1288473002: Add high resolution WallTimer to SampleApp (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Created 5 years, 4 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 | samplecode/SampleApp.h » ('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 # 5 #
6 { 6 {
7 'includes': [ 7 'includes': [
8 'apptype_console.gypi', 8 'apptype_console.gypi',
9 ], 9 ],
10 'targets': [ 10 'targets': [
11 { 11 {
12 'target_name': 'SampleApp', 12 'target_name': 'SampleApp',
13 'type': 'executable', 13 'type': 'executable',
14 'include_dirs' : [ 14 'include_dirs' : [
15 '../include/private', 15 '../include/private',
16 '../src/core', 16 '../src/core',
17 '../src/effects', #needed for BlurMask.h 17 '../src/effects', #needed for BlurMask.h
18 '../src/gpu', # needed by SkLua.cpp 18 '../src/gpu', # needed by SkLua.cpp
19 '../src/images', 19 '../src/images',
20 '../src/lazy', 20 '../src/lazy',
21 '../gm', # needed to pull gm.h 21 '../gm', # needed to pull gm.h
22 '../samplecode', # To pull SampleApp.h and SampleCode.h 22 '../samplecode', # To pull SampleApp.h and SampleCode.h
23 '../src/pipe/utils', # For TiledPipeController 23 '../src/pipe/utils', # For TiledPipeController
24 '../src/utils/debugger', 24 '../src/utils/debugger',
25 '../tools',
25 ], 26 ],
26 'includes': [ 27 'includes': [
27 'gmslides.gypi', 28 'gmslides.gypi',
28 ], 29 ],
29 'sources': [ 30 'sources': [
30 '../gm/gm.cpp', 31 '../gm/gm.cpp',
31 '../samplecode/GMSampleView.h', 32 '../samplecode/GMSampleView.h',
32 '../samplecode/GMSampleView.cpp', 33 '../samplecode/GMSampleView.cpp',
33 '../samplecode/ClockFaceView.cpp', 34 '../samplecode/ClockFaceView.cpp',
34 '../samplecode/OverView.cpp', 35 '../samplecode/OverView.cpp',
(...skipping 112 matching lines...) Expand 10 before | Expand all | Expand 10 after
147 'dependencies': [ 148 'dependencies': [
148 'animator.gyp:animator', 149 'animator.gyp:animator',
149 'etc1.gyp:libetc1', 150 'etc1.gyp:libetc1',
150 'experimental.gyp:experimental', 151 'experimental.gyp:experimental',
151 'flags.gyp:flags', 152 'flags.gyp:flags',
152 'lua.gyp:lua', 153 'lua.gyp:lua',
153 'pdf.gyp:pdf', 154 'pdf.gyp:pdf',
154 'skia_lib.gyp:skia_lib', 155 'skia_lib.gyp:skia_lib',
155 'tools.gyp:resources', 156 'tools.gyp:resources',
156 'tools.gyp:sk_tool_utils', 157 'tools.gyp:sk_tool_utils',
158 'tools.gyp:timer',
157 'views.gyp:views', 159 'views.gyp:views',
158 'views_animated.gyp:views_animated', 160 'views_animated.gyp:views_animated',
159 'xml.gyp:xml', 161 'xml.gyp:xml',
160 ], 162 ],
161 'conditions' : [ 163 'conditions' : [
162 [ 'skia_os == "win"', { 164 [ 'skia_os == "win"', {
163 'sources!': [ 165 'sources!': [
164 # require UNIX functions 166 # require UNIX functions
165 '../samplecode/SampleEncode.cpp', 167 '../samplecode/SampleEncode.cpp',
166 ], 168 ],
(...skipping 83 matching lines...) Expand 10 before | Expand all | Expand 10 after
250 }], 252 }],
251 [ 'skia_gpu == 1', { 253 [ 'skia_gpu == 1', {
252 'dependencies': [ 254 'dependencies': [
253 'gputest.gyp:skgputest', 255 'gputest.gyp:skgputest',
254 ], 256 ],
255 }], 257 }],
256 ], 258 ],
257 }, 259 },
258 ], 260 ],
259 } 261 }
OLDNEW
« no previous file with comments | « no previous file | samplecode/SampleApp.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698