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

Side by Side Diff: gyp/SampleApp.gyp

Issue 340533002: hide SkBitmap::Config entirely (behind a flag) (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Created 6 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 | « gm/bitmapfilters.cpp ('k') | gyp/gm.gyp » ('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 '../tools',
22 ], 23 ],
23 'includes': [ 24 'includes': [
24 'gmslides.gypi', 25 'gmslides.gypi',
25 ], 26 ],
26 'sources': [ 27 'sources': [
27 '../samplecode/GMSampleView.h', 28 '../samplecode/GMSampleView.h',
28 '../samplecode/ClockFaceView.cpp', 29 '../samplecode/ClockFaceView.cpp',
29 '../samplecode/OverView.cpp', 30 '../samplecode/OverView.cpp',
30 '../samplecode/OverView.h', 31 '../samplecode/OverView.h',
31 '../samplecode/Sample2PtRadial.cpp', 32 '../samplecode/Sample2PtRadial.cpp',
(...skipping 95 matching lines...) Expand 10 before | Expand all | Expand 10 after
127 #'../experimental/Networking/SkSockets.cpp', 128 #'../experimental/Networking/SkSockets.cpp',
128 #'../experimental/Networking/SkSockets.h', 129 #'../experimental/Networking/SkSockets.h',
129 130
130 # TiledPipeController 131 # TiledPipeController
131 '../src/pipe/utils/SamplePipeControllers.h', 132 '../src/pipe/utils/SamplePipeControllers.h',
132 '../src/pipe/utils/SamplePipeControllers.cpp', 133 '../src/pipe/utils/SamplePipeControllers.cpp',
133 134
134 # Lua 135 # Lua
135 '../src/utils/SkLuaCanvas.cpp', 136 '../src/utils/SkLuaCanvas.cpp',
136 '../src/utils/SkLua.cpp', 137 '../src/utils/SkLua.cpp',
138
139 # tools
140 '../tools/sk_tool_utils.cpp',
137 ], 141 ],
138 'sources!': [ 142 'sources!': [
139 '../samplecode/SampleSkLayer.cpp', #relies on SkMatrix44 which doesn't c ompile 143 '../samplecode/SampleSkLayer.cpp', #relies on SkMatrix44 which doesn't c ompile
140 '../samplecode/SampleWarp.cpp', 144 '../samplecode/SampleWarp.cpp',
141 '../samplecode/SampleFontCache.cpp', 145 '../samplecode/SampleFontCache.cpp',
142 ], 146 ],
143 'dependencies': [ 147 'dependencies': [
144 'skia_lib.gyp:skia_lib', 148 'skia_lib.gyp:skia_lib',
145 'views.gyp:views', 149 'views.gyp:views',
146 'animator.gyp:animator', 150 'animator.gyp:animator',
(...skipping 150 matching lines...) Expand 10 before | Expand all | Expand 10 after
297 }], 301 }],
298 ], 302 ],
299 'msvs_settings': { 303 'msvs_settings': {
300 'VCLinkerTool': { 304 'VCLinkerTool': {
301 'SubSystem': '2', 305 'SubSystem': '2',
302 }, 306 },
303 }, 307 },
304 }, 308 },
305 ], 309 ],
306 } 310 }
OLDNEW
« no previous file with comments | « gm/bitmapfilters.cpp ('k') | gyp/gm.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698