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

Side by Side Diff: gyp/viewer.gyp

Issue 2063883002: Revert of Add samples to Viewer. (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Created 4 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
« no previous file with comments | « no previous file | samplecode/ClockFaceView.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 2016 Google Inc. 1 # Copyright 2016 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 # GYP file to build performance testbench. 5 # GYP file to build performance testbench.
6 # 6 #
7 { 7 {
8 'includes': [ 8 'includes': [
9 'apptype_console.gypi', 9 'apptype_console.gypi',
10 ], 10 ],
11 'targets': [ 11 'targets': [
12 { 12 {
13 'target_name': 'viewer', 13 'target_name': 'viewer',
14 'type': 'executable', 14 'type': 'executable',
15 'includes' : [ 15 'includes' : [
16 'gmslides.gypi', 16 'gmslides.gypi',
17 ], 17 ],
18 'include_dirs': [ 18 'include_dirs': [
19 '../bench', 19 '../bench',
20 '../experimental',
21 '../gm', 20 '../gm',
22 '../include/views', 21 '../include/views',
23 '../include/private', 22 '../include/private',
24 '../samplecode',
25 '../src/core', 23 '../src/core',
26 '../src/effects', 24 '../src/effects',
27 '../src/gpu', 25 '../src/gpu',
26 '../src/images',
28 '../src/image', 27 '../src/image',
29 '../src/images',
30 '../src/pathops',
31 '../src/views/unix', 28 '../src/views/unix',
32 '../tools/timer', 29 '../tools/timer',
33 '../tools',
34 ], 30 ],
35 'sources': [ 31 'sources': [
36 '../gm/gm.cpp', 32 '../gm/gm.cpp',
37 33 '../src/views/SkTouchGesture.cpp',
38 '../src/views/unix/keysym2ucs.c', 34 '../src/views/unix/keysym2ucs.c',
39 '<!@(python find.py ../tools/viewer "*.cpp")', 35 '<!@(python find.py ../tools/viewer "*.cpp")',
40
41 # Samples
42 '../samplecode/GMSampleView.h',
43 '../samplecode/GMSampleView.cpp',
44 '../samplecode/ClockFaceView.cpp',
45 '../samplecode/OverView.cpp',
46 '../samplecode/OverView.h',
47 '../samplecode/PerlinPatch.cpp',
48 '../samplecode/Sample2PtRadial.cpp',
49 '../samplecode/SampleAAClip.cpp',
50 '../samplecode/SampleAAGeometry.cpp',
51 '../samplecode/SampleAARects.cpp',
52 '../samplecode/SampleAARectModes.cpp',
53 '../samplecode/SampleAll.cpp',
54 '../samplecode/SampleAnimatedText.cpp',
55 '../samplecode/SampleAnimBlur.cpp',
56 '../samplecode/SampleApp.cpp',
57 '../samplecode/SampleArc.cpp',
58 '../samplecode/SampleAtlas.cpp',
59 '../samplecode/SampleBigBlur.cpp',
60 '../samplecode/SampleBigGradient.cpp',
61 '../samplecode/SampleBitmapRect.cpp',
62 '../samplecode/SampleBlur.cpp',
63 '../samplecode/SampleCamera.cpp',
64 '../samplecode/SampleChart.cpp',
65 '../samplecode/SampleCircle.cpp',
66 '../samplecode/SampleClip.cpp',
67 '../samplecode/SampleClipDrawMatch.cpp',
68 '../samplecode/SampleClock.cpp',
69 '../samplecode/SampleCode.h',
70 '../samplecode/SampleColorFilter.cpp',
71 '../samplecode/SampleComplexClip.cpp',
72 '../samplecode/SampleConcavePaths.cpp',
73 '../samplecode/SampleDegenerateTwoPtRadials.cpp',
74 '../samplecode/SampleDither.cpp',
75 '../samplecode/SampleDitherBitmap.cpp',
76 '../samplecode/SampleEffects.cpp',
77 '../samplecode/SampleEmboss.cpp',
78 '../samplecode/SampleFatBits.cpp',
79 '../samplecode/SampleFillType.cpp',
80 '../samplecode/SampleFilter.cpp',
81 '../samplecode/SampleFilter2.cpp',
82 '../samplecode/SampleFilterQuality.cpp',
83 '../samplecode/SampleFilterFuzz.cpp',
84 '../samplecode/SampleFontCache.cpp',
85 '../samplecode/SampleFontScalerTest.cpp',
86 '../samplecode/SampleFuzz.cpp',
87 '../samplecode/SampleGradients.cpp',
88 '../samplecode/SampleHairCurves.cpp',
89 '../samplecode/SampleHairline.cpp',
90 '../samplecode/SampleHairModes.cpp',
91 '../samplecode/SampleHT.cpp',
92 '../samplecode/SampleIdentityScale.cpp',
93 '../samplecode/SampleLayerMask.cpp',
94 '../samplecode/SampleLayers.cpp',
95 '../samplecode/SampleLCD.cpp',
96 '../samplecode/SampleLighting.cpp',
97 '../samplecode/SampleLines.cpp',
98 '../samplecode/SampleLitAtlas.cpp',
99 '../samplecode/SampleLua.cpp',
100 '../samplecode/SampleManyRects.cpp',
101 '../samplecode/SampleMeasure.cpp',
102 '../samplecode/SampleMegaStroke.cpp',
103 '../samplecode/SamplePatch.cpp',
104 '../samplecode/SamplePath.cpp',
105 '../samplecode/SamplePathClip.cpp',
106 '../samplecode/SamplePathFuzz.cpp',
107 '../samplecode/SamplePathEffects.cpp',
108 '../samplecode/SamplePictFile.cpp',
109 '../samplecode/SamplePoints.cpp',
110 '../samplecode/SamplePolyToPoly.cpp',
111 '../samplecode/SampleQuadStroker.cpp',
112 '../samplecode/SampleRectanizer.cpp',
113 '../samplecode/SampleRegion.cpp',
114 '../samplecode/SampleRepeatTile.cpp',
115 '../samplecode/SampleShaders.cpp',
116 '../samplecode/SampleShaderText.cpp',
117 '../samplecode/SampleShip.cpp',
118 '../samplecode/SampleSkLayer.cpp',
119 '../samplecode/SampleSlides.cpp',
120 '../samplecode/SampleStringArt.cpp',
121 '../samplecode/SampleStrokePath.cpp',
122 '../samplecode/SampleSubpixelTranslate.cpp',
123 '../samplecode/SampleText.cpp',
124 '../samplecode/SampleTextAlpha.cpp',
125 '../samplecode/SampleTextBox.cpp',
126 '../samplecode/SampleTextOnPath.cpp',
127 '../samplecode/SampleTextureDomain.cpp',
128 '../samplecode/SampleTiling.cpp',
129 '../samplecode/SampleTinyBitmap.cpp',
130 '../samplecode/SampleUnpremul.cpp',
131 '../samplecode/SampleVertices.cpp',
132 '../samplecode/SampleXfermodesBlur.cpp',
133 '../samplecode/SampleXfer.cpp',
134 '../src/views/SkTouchGesture.cpp',
135
136 # PerlinNoise2
137 '../experimental/SkPerlinNoiseShader2/SkPerlinNoiseShader2.cpp',
138 '../experimental/SkPerlinNoiseShader2/SkPerlinNoiseShader2.h',
139
140 # Lua
141 '../src/utils/SkLuaCanvas.cpp',
142 '../src/utils/SkLua.cpp',
143 ], 36 ],
144 'sources!': [
145 '../samplecode/SampleSkLayer.cpp', #relies on SkMatrix44 which doesn't c ompile
146 '../samplecode/SampleFontCache.cpp', #relies on pthread.h
147 ],
148 'dependencies': [ 37 'dependencies': [
149 'experimental.gyp:experimental',
150 'flags.gyp:flags', 38 'flags.gyp:flags',
151 'gputest.gyp:skgputest', 39 'gputest.gyp:skgputest',
152 'jsoncpp.gyp:jsoncpp', 40 'jsoncpp.gyp:jsoncpp',
153 'lua.gyp:lua',
154 'pdf.gyp:pdf',
155 'skia_lib.gyp:skia_lib', 41 'skia_lib.gyp:skia_lib',
156 'tools.gyp:crash_handler', 42 'tools.gyp:crash_handler',
157 'tools.gyp:proc_stats', 43 'tools.gyp:proc_stats',
158 'tools.gyp:resources', 44 'tools.gyp:resources',
159 'tools.gyp:sk_tool_utils', 45 'tools.gyp:sk_tool_utils',
160 'tools.gyp:timer', 46 'tools.gyp:timer',
161 'tools.gyp:url_data_manager', 47 'tools.gyp:url_data_manager',
162 'views.gyp:views',
163 'xml.gyp:xml',
164 ], 48 ],
165 'conditions' : [ 49 'conditions' : [
166 [ 'skia_os == "android"', { 50 [ 'skia_os == "android"', {
167 'dependencies': [ 51 'dependencies': [
168 'android_deps.gyp:Android_EntryPoint', 52 'android_deps.gyp:Android_EntryPoint',
169 'android_deps.gyp:native_app_glue', 53 'android_deps.gyp:native_app_glue',
170 ], 54 ],
171 'link_settings': { 55 'link_settings': {
172 'libraries': [ 56 'libraries': [
173 '-landroid', 57 '-landroid',
(...skipping 18 matching lines...) Expand all
192 ], 76 ],
193 }], 77 }],
194 ['skia_os != "win"', { 78 ['skia_os != "win"', {
195 'sources/': [ ['exclude', '_win.(h|cpp)$'], 79 'sources/': [ ['exclude', '_win.(h|cpp)$'],
196 ], 80 ],
197 }], 81 }],
198 ], 82 ],
199 }, 83 },
200 ], 84 ],
201 } 85 }
OLDNEW
« no previous file with comments | « no previous file | samplecode/ClockFaceView.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698