| OLD | NEW |
| 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 286 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 297 ], | 297 ], |
| 298 'dependencies!': [ | 298 'dependencies!': [ |
| 299 'animator.gyp:animator', | 299 'animator.gyp:animator', |
| 300 'experimental.gyp:experimental', | 300 'experimental.gyp:experimental', |
| 301 ], | 301 ], |
| 302 'dependencies': [ | 302 'dependencies': [ |
| 303 'android_deps.gyp:Android_SampleApp', | 303 'android_deps.gyp:Android_SampleApp', |
| 304 ], | 304 ], |
| 305 }], | 305 }], |
| 306 [ 'skia_gpu == 1', { | 306 [ 'skia_gpu == 1', { |
| 307 'include_dirs': [ |
| 308 '../src/gpu/utils', |
| 309 ], |
| 307 'dependencies': [ | 310 'dependencies': [ |
| 308 'gputest.gyp:skgputest', | 311 'gputest.gyp:skgputest', |
| 309 ], | 312 ], |
| 313 'sources': [ |
| 314 '../src/gpu/utils/GrUtils.h', |
| 315 '../src/gpu/utils/GrUtils.cpp', |
| 316 ], |
| 310 }], | 317 }], |
| 311 [ 'skia_os == "nacl"', { | 318 [ 'skia_os == "nacl"', { |
| 312 'sources': [ | 319 'sources': [ |
| 313 '../../nacl/src/nacl_sample.cpp', | 320 '../../nacl/src/nacl_sample.cpp', |
| 314 ], | 321 ], |
| 315 }], | 322 }], |
| 316 ], | 323 ], |
| 317 'msvs_settings': { | 324 'msvs_settings': { |
| 318 'VCLinkerTool': { | 325 'VCLinkerTool': { |
| 319 'SubSystem': '2', | 326 'SubSystem': '2', |
| 320 }, | 327 }, |
| 321 }, | 328 }, |
| 322 }, | 329 }, |
| 323 ], | 330 ], |
| 324 } | 331 } |
| 325 | 332 |
| 326 # Local Variables: | 333 # Local Variables: |
| 327 # tab-width:2 | 334 # tab-width:2 |
| 328 # indent-tabs-mode:nil | 335 # indent-tabs-mode:nil |
| 329 # End: | 336 # End: |
| 330 # vim: set expandtab tabstop=2 shiftwidth=2: | 337 # vim: set expandtab tabstop=2 shiftwidth=2: |
| OLD | NEW |