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

Side by Side Diff: gyp/SampleApp.gyp

Issue 22861007: pdfviewer: fix typo in sample app (Closed) Base URL: http://skia.googlecode.com/svn/trunk/
Patch Set: Created 7 years, 4 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 | Annotate | Revision Log
« no previous file with comments | « no previous file | no next file » | 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 'variables': { 2 'variables': {
3 #manually set sample_pdf_file_viewer to 1 to have the PdfViewer in SampleApp 3 #manually set sample_pdf_file_viewer to 1 to have the PdfViewer in SampleApp
4 'sample_pdf_file_viewer%': 0, 4 'sample_pdf_file_viewer%': 0,
5 }, 5 },
6 'targets': [ 6 'targets': [
7 { 7 {
8 'target_name': 'SampleApp', 8 'target_name': 'SampleApp',
9 'type': 'executable', 9 'type': 'executable',
10 'mac_bundle' : 1, 10 'mac_bundle' : 1,
(...skipping 143 matching lines...) Expand 10 before | Expand all | Expand 10 after
154 'pdf.gyp:pdf', 154 'pdf.gyp:pdf',
155 'views_animated.gyp:views_animated', 155 'views_animated.gyp:views_animated',
156 'lua.gyp:lua', 156 'lua.gyp:lua',
157 ], 157 ],
158 'conditions' : [ 158 'conditions' : [
159 [ 'sample_pdf_file_viewer == 1', { 159 [ 'sample_pdf_file_viewer == 1', {
160 'defines': [ 160 'defines': [
161 'SAMPLE_PDF_FILE_VIEWER', 161 'SAMPLE_PDF_FILE_VIEWER',
162 ], 162 ],
163 'dependencies': [ 163 'dependencies': [
164 'pdfviewer_lib.gyp:libpdfviewer_lib', 164 'pdfviewer_lib.gyp:pdfviewer_lib',
165 ], 165 ],
166 'include_dirs' : [ 166 'include_dirs' : [
167 '../experimental/PdfViewer/', 167 '../experimental/PdfViewer/',
168 ], 168 ],
169 'sources': [ 169 'sources': [
170 '../samplecode/SamplePdfFileViewer.cpp', 170 '../samplecode/SamplePdfFileViewer.cpp',
171 ] 171 ]
172 }], 172 }],
173 [ 'skia_os == "win"', { 173 [ 'skia_os == "win"', {
174 'sources!': [ 174 'sources!': [
(...skipping 142 matching lines...) Expand 10 before | Expand all | Expand 10 after
317 }, 317 },
318 }, 318 },
319 ], 319 ],
320 } 320 }
321 321
322 # Local Variables: 322 # Local Variables:
323 # tab-width:2 323 # tab-width:2
324 # indent-tabs-mode:nil 324 # indent-tabs-mode:nil
325 # End: 325 # End:
326 # vim: set expandtab tabstop=2 shiftwidth=2: 326 # vim: set expandtab tabstop=2 shiftwidth=2:
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698