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

Side by Side Diff: gyp/SampleApp.gyp

Issue 346453002: Refactor how we handle resources path in Tests. (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: REBASE 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
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',
(...skipping 96 matching lines...) Expand 10 before | Expand all | Expand 10 after
107 '../samplecode/SampleTextBox.cpp', 107 '../samplecode/SampleTextBox.cpp',
108 '../samplecode/SampleTextOnPath.cpp', 108 '../samplecode/SampleTextOnPath.cpp',
109 '../samplecode/SampleTextureDomain.cpp', 109 '../samplecode/SampleTextureDomain.cpp',
110 '../samplecode/SampleTiling.cpp', 110 '../samplecode/SampleTiling.cpp',
111 '../samplecode/SampleTinyBitmap.cpp', 111 '../samplecode/SampleTinyBitmap.cpp',
112 '../samplecode/SampleUnpremul.cpp', 112 '../samplecode/SampleUnpremul.cpp',
113 '../samplecode/SampleVertices.cpp', 113 '../samplecode/SampleVertices.cpp',
114 '../samplecode/SampleXfermodesBlur.cpp', 114 '../samplecode/SampleXfermodesBlur.cpp',
115 '../samplecode/TransitionView.cpp', 115 '../samplecode/TransitionView.cpp',
116 '../samplecode/TransitionView.h', 116 '../samplecode/TransitionView.h',
117 '../tools/Resources.cpp',
117 118
118 # DrawingBoard 119 # DrawingBoard
119 #'../experimental/DrawingBoard/SkColorPalette.h', 120 #'../experimental/DrawingBoard/SkColorPalette.h',
120 #'../experimental/DrawingBoard/SkColorPalette.cpp', 121 #'../experimental/DrawingBoard/SkColorPalette.cpp',
121 #'../experimental/DrawingBoard/SkNetPipeController.h', 122 #'../experimental/DrawingBoard/SkNetPipeController.h',
122 #'../experimental/DrawingBoard/SkNetPipeController.cpp', 123 #'../experimental/DrawingBoard/SkNetPipeController.cpp',
123 #'../experimental/DrawingBoard/SampleDrawingClient.cpp', 124 #'../experimental/DrawingBoard/SampleDrawingClient.cpp',
124 #'../experimental/DrawingBoard/SampleDrawingServer.cpp', 125 #'../experimental/DrawingBoard/SampleDrawingServer.cpp',
125 126
126 # Networking 127 # Networking
(...skipping 11 matching lines...) Expand all
138 139
139 # tools 140 # tools
140 '../tools/sk_tool_utils.cpp', 141 '../tools/sk_tool_utils.cpp',
141 ], 142 ],
142 'sources!': [ 143 'sources!': [
143 '../samplecode/SampleSkLayer.cpp', #relies on SkMatrix44 which doesn't c ompile 144 '../samplecode/SampleSkLayer.cpp', #relies on SkMatrix44 which doesn't c ompile
144 '../samplecode/SampleWarp.cpp', 145 '../samplecode/SampleWarp.cpp',
145 '../samplecode/SampleFontCache.cpp', 146 '../samplecode/SampleFontCache.cpp',
146 ], 147 ],
147 'dependencies': [ 148 'dependencies': [
149 'animator.gyp:animator',
150 'etc1.gyp:libetc1',
151 'experimental.gyp:experimental',
152 'flags.gyp:flags',
153 'lua.gyp:lua',
154 'pdf.gyp:pdf',
148 'skia_lib.gyp:skia_lib', 155 'skia_lib.gyp:skia_lib',
149 'views.gyp:views', 156 'views.gyp:views',
150 'animator.gyp:animator', 157 'views_animated.gyp:views_animated',
151 'xml.gyp:xml', 158 'xml.gyp:xml',
152 'experimental.gyp:experimental',
153 'pdf.gyp:pdf',
154 'views_animated.gyp:views_animated',
155 'lua.gyp:lua',
156 'etc1.gyp:libetc1',
157 ], 159 ],
158 'conditions' : [ 160 'conditions' : [
159 [ 'sample_pdf_file_viewer == 1', { 161 [ 'sample_pdf_file_viewer == 1', {
160 'defines': [ 162 'defines': [
161 'SAMPLE_PDF_FILE_VIEWER', 163 'SAMPLE_PDF_FILE_VIEWER',
162 ], 164 ],
163 'dependencies': [ 165 'dependencies': [
164 'pdfviewer_lib.gyp:pdfviewer_lib', 166 'pdfviewer_lib.gyp:pdfviewer_lib',
165 ], 167 ],
166 'include_dirs' : [ 168 'include_dirs' : [
(...skipping 134 matching lines...) Expand 10 before | Expand all | Expand 10 after
301 }], 303 }],
302 ], 304 ],
303 'msvs_settings': { 305 'msvs_settings': {
304 'VCLinkerTool': { 306 'VCLinkerTool': {
305 'SubSystem': '2', 307 'SubSystem': '2',
306 }, 308 },
307 }, 309 },
308 }, 310 },
309 ], 311 ],
310 } 312 }
OLDNEW
« gm/cmykjpeg.cpp ('K') | « go1.2.1.linux-amd64.tar.gz ('k') | gyp/bench.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698