OLD | NEW |
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 132 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
143 '../src/utils/SkLua.cpp', | 143 '../src/utils/SkLua.cpp', |
144 ], | 144 ], |
145 'sources!': [ | 145 'sources!': [ |
146 '../samplecode/SampleSkLayer.cpp', #relies on SkMatrix44 which doesn't c
ompile | 146 '../samplecode/SampleSkLayer.cpp', #relies on SkMatrix44 which doesn't c
ompile |
147 '../samplecode/SampleTests.cpp', #includes unknown file SkShaderExtras
.h | 147 '../samplecode/SampleTests.cpp', #includes unknown file SkShaderExtras
.h |
148 '../samplecode/SampleWarp.cpp', | 148 '../samplecode/SampleWarp.cpp', |
149 '../samplecode/SampleFontCache.cpp', | 149 '../samplecode/SampleFontCache.cpp', |
150 ], | 150 ], |
151 'dependencies': [ | 151 'dependencies': [ |
152 'skia_lib.gyp:skia_lib', | 152 'skia_lib.gyp:skia_lib', |
| 153 'flags.gyp:flags', |
153 'views.gyp:views', | 154 'views.gyp:views', |
154 'animator.gyp:animator', | 155 'animator.gyp:animator', |
155 'xml.gyp:xml', | 156 'xml.gyp:xml', |
156 'experimental.gyp:experimental', | 157 'experimental.gyp:experimental', |
157 'pdf.gyp:pdf', | 158 'pdf.gyp:pdf', |
158 'views_animated.gyp:views_animated', | 159 'views_animated.gyp:views_animated', |
159 'lua.gyp:lua', | 160 'lua.gyp:lua', |
160 ], | 161 ], |
161 'conditions' : [ | 162 'conditions' : [ |
162 [ 'sample_pdf_file_viewer == 1', { | 163 [ 'sample_pdf_file_viewer == 1', { |
(...skipping 157 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
320 }, | 321 }, |
321 }, | 322 }, |
322 ], | 323 ], |
323 } | 324 } |
324 | 325 |
325 # Local Variables: | 326 # Local Variables: |
326 # tab-width:2 | 327 # tab-width:2 |
327 # indent-tabs-mode:nil | 328 # indent-tabs-mode:nil |
328 # End: | 329 # End: |
329 # vim: set expandtab tabstop=2 shiftwidth=2: | 330 # vim: set expandtab tabstop=2 shiftwidth=2: |
OLD | NEW |