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

Side by Side Diff: gyp/SampleApp.gyp

Issue 947733002: move GMSampleView into its own cpp (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Created 5 years, 10 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/GMSampleView.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 # 1 #
2 { 2 {
3 'variables': { 3 'variables': {
4 #manually set sample_pdf_file_viewer to 1 to have the PdfViewer in SampleApp 4 #manually set sample_pdf_file_viewer to 1 to have the PdfViewer in SampleApp
5 'sample_pdf_file_viewer%': 0, 5 'sample_pdf_file_viewer%': 0,
6 }, 6 },
7 'targets': [ 7 'targets': [
8 { 8 {
9 'target_name': 'SampleApp', 9 'target_name': 'SampleApp',
10 'type': 'executable', 10 'type': 'executable',
11 'mac_bundle' : 1, 11 'mac_bundle' : 1,
12 'include_dirs' : [ 12 'include_dirs' : [
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 ], 22 ],
23 'includes': [ 23 'includes': [
24 'gmslides.gypi', 24 'gmslides.gypi',
25 ], 25 ],
26 'sources': [ 26 'sources': [
27 '../gm/gm.cpp', 27 '../gm/gm.cpp',
28 '../samplecode/GMSampleView.h', 28 '../samplecode/GMSampleView.h',
29 '../samplecode/GMSampleView.cpp',
29 '../samplecode/ClockFaceView.cpp', 30 '../samplecode/ClockFaceView.cpp',
30 '../samplecode/OverView.cpp', 31 '../samplecode/OverView.cpp',
31 '../samplecode/OverView.h', 32 '../samplecode/OverView.h',
32 '../samplecode/Sample2PtRadial.cpp', 33 '../samplecode/Sample2PtRadial.cpp',
33 '../samplecode/SampleAAClip.cpp', 34 '../samplecode/SampleAAClip.cpp',
34 '../samplecode/SampleAARects.cpp', 35 '../samplecode/SampleAARects.cpp',
35 '../samplecode/SampleAARectModes.cpp', 36 '../samplecode/SampleAARectModes.cpp',
36 '../samplecode/SampleAll.cpp', 37 '../samplecode/SampleAll.cpp',
37 '../samplecode/SampleAnimator.cpp', 38 '../samplecode/SampleAnimator.cpp',
38 '../samplecode/SampleAnimBlur.cpp', 39 '../samplecode/SampleAnimBlur.cpp',
(...skipping 259 matching lines...) Expand 10 before | Expand all | Expand 10 after
298 }], 299 }],
299 ], 300 ],
300 'msvs_settings': { 301 'msvs_settings': {
301 'VCLinkerTool': { 302 'VCLinkerTool': {
302 'SubSystem': '2', 303 'SubSystem': '2',
303 }, 304 },
304 }, 305 },
305 }, 306 },
306 ], 307 ],
307 } 308 }
OLDNEW
« no previous file with comments | « no previous file | samplecode/GMSampleView.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698