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

Side by Side Diff: gyp/SampleApp.gyp

Issue 1410863006: Update sample to use new perlin noise shader, and make cloud like (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: more nits Created 5 years, 1 month 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 | « experimental/SkPerlinNoiseShader2/SkPerlinNoiseShader2.cpp ('k') | samplecode/PerlinPatch.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 # 5 #
6 { 6 {
7 'targets': [ 7 'targets': [
8 { 8 {
9 'target_name': 'SampleApp', 9 'target_name': 'SampleApp',
10 'type': 'executable', 10 'type': 'executable',
11 'include_dirs' : [ 11 'include_dirs' : [
12 '../include/private', 12 '../include/private',
13 '../src/core', 13 '../src/core',
14 '../src/effects', #needed for BlurMask.h 14 '../src/effects', #needed for BlurMask.h
15 '../src/gpu', # needed by SkLua.cpp 15 '../src/gpu', # needed by SkLua.cpp
16 '../src/images', 16 '../src/images',
17 '../src/lazy', 17 '../src/lazy',
18 '../gm', # needed to pull gm.h 18 '../gm', # needed to pull gm.h
19 '../samplecode', # To pull SampleApp.h and SampleCode.h 19 '../samplecode', # To pull SampleApp.h and SampleCode.h
20 '../src/pipe/utils', # For TiledPipeController 20 '../src/pipe/utils', # For TiledPipeController
21 '../src/utils/debugger', 21 '../src/utils/debugger',
22 '../tools', 22 '../tools',
23 '../experimental',
23 ], 24 ],
24 'includes': [ 25 'includes': [
25 'gmslides.gypi', 26 'gmslides.gypi',
26 ], 27 ],
27 'sources': [ 28 'sources': [
28 '../gm/gm.cpp', 29 '../gm/gm.cpp',
29 '../samplecode/GMSampleView.h', 30 '../samplecode/GMSampleView.h',
30 '../samplecode/GMSampleView.cpp', 31 '../samplecode/GMSampleView.cpp',
31 '../samplecode/ClockFaceView.cpp', 32 '../samplecode/ClockFaceView.cpp',
32 '../samplecode/OverView.cpp', 33 '../samplecode/OverView.cpp',
(...skipping 91 matching lines...) Expand 10 before | Expand all | Expand 10 after
124 #'../experimental/DrawingBoard/SkNetPipeController.h', 125 #'../experimental/DrawingBoard/SkNetPipeController.h',
125 #'../experimental/DrawingBoard/SkNetPipeController.cpp', 126 #'../experimental/DrawingBoard/SkNetPipeController.cpp',
126 #'../experimental/DrawingBoard/SampleDrawingClient.cpp', 127 #'../experimental/DrawingBoard/SampleDrawingClient.cpp',
127 #'../experimental/DrawingBoard/SampleDrawingServer.cpp', 128 #'../experimental/DrawingBoard/SampleDrawingServer.cpp',
128 129
129 # Networking 130 # Networking
130 #'../experimental/Networking/SampleNetPipeReader.cpp', 131 #'../experimental/Networking/SampleNetPipeReader.cpp',
131 #'../experimental/Networking/SkSockets.cpp', 132 #'../experimental/Networking/SkSockets.cpp',
132 #'../experimental/Networking/SkSockets.h', 133 #'../experimental/Networking/SkSockets.h',
133 134
135 # PerlinNoise2
136 '../experimental/SkPerlinNoiseShader2/SkPerlinNoiseShader2.cpp',
137 '../experimental/SkPerlinNoiseShader2/SkPerlinNoiseShader2.h',
138
134 # TiledPipeController 139 # TiledPipeController
135 '../src/pipe/utils/SamplePipeControllers.h', 140 '../src/pipe/utils/SamplePipeControllers.h',
136 '../src/pipe/utils/SamplePipeControllers.cpp', 141 '../src/pipe/utils/SamplePipeControllers.cpp',
137 142
138 # Lua 143 # Lua
139 '../src/utils/SkLuaCanvas.cpp', 144 '../src/utils/SkLuaCanvas.cpp',
140 '../src/utils/SkLua.cpp', 145 '../src/utils/SkLua.cpp',
141 ], 146 ],
142 'sources!': [ 147 'sources!': [
143 '../samplecode/SampleSkLayer.cpp', #relies on SkMatrix44 which doesn't c ompile 148 '../samplecode/SampleSkLayer.cpp', #relies on SkMatrix44 which doesn't c ompile
(...skipping 121 matching lines...) Expand 10 before | Expand all | Expand 10 after
265 ], 270 ],
266 }], 271 }],
267 [ 'not skia_pdf', { 272 [ 'not skia_pdf', {
268 'dependencies!': [ 'pdf.gyp:pdf' ], 273 'dependencies!': [ 'pdf.gyp:pdf' ],
269 'dependencies': [ 'pdf.gyp:nopdf' ], 274 'dependencies': [ 'pdf.gyp:nopdf' ],
270 }], 275 }],
271 ], 276 ],
272 }, 277 },
273 ], 278 ],
274 } 279 }
OLDNEW
« no previous file with comments | « experimental/SkPerlinNoiseShader2/SkPerlinNoiseShader2.cpp ('k') | samplecode/PerlinPatch.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698