| OLD | NEW |
| 1 # GYP file to build various tools. | 1 # GYP file to build various tools. |
| 2 # | 2 # |
| 3 # To build on Linux: | 3 # To build on Linux: |
| 4 # ./gyp_skia tools.gyp && make tools | 4 # ./gyp_skia tools.gyp && make tools |
| 5 # | 5 # |
| 6 { | 6 { |
| 7 'includes': [ | 7 'includes': [ |
| 8 'apptype_console.gypi', | 8 'apptype_console.gypi', |
| 9 ], | 9 ], |
| 10 'targets': [ | 10 'targets': [ |
| (...skipping 455 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 466 ], | 466 ], |
| 467 'conditions': [ | 467 'conditions': [ |
| 468 ['skia_gpu == 1', | 468 ['skia_gpu == 1', |
| 469 { | 469 { |
| 470 'include_dirs' : [ | 470 'include_dirs' : [ |
| 471 '../src/gpu', | 471 '../src/gpu', |
| 472 ], | 472 ], |
| 473 'dependencies': [ | 473 'dependencies': [ |
| 474 'gputest.gyp:skgputest', | 474 'gputest.gyp:skgputest', |
| 475 ], | 475 ], |
| 476 'export_dependent_settings': [ |
| 477 'gputest.gyp:skgputest', |
| 478 ], |
| 476 }, | 479 }, |
| 477 ], | 480 ], |
| 478 ], | 481 ], |
| 479 }, | 482 }, |
| 480 { | 483 { |
| 481 'target_name': 'render_pdfs', | 484 'target_name': 'render_pdfs', |
| 482 'type': 'executable', | 485 'type': 'executable', |
| 483 'sources': [ | 486 'sources': [ |
| 484 '../tools/render_pdfs_main.cpp', | 487 '../tools/render_pdfs_main.cpp', |
| 485 ], | 488 ], |
| (...skipping 220 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 706 'flags.gyp:flags', | 709 'flags.gyp:flags', |
| 707 'skia_lib.gyp:skia_lib', | 710 'skia_lib.gyp:skia_lib', |
| 708 'resources', | 711 'resources', |
| 709 ], | 712 ], |
| 710 }, | 713 }, |
| 711 ], | 714 ], |
| 712 }, | 715 }, |
| 713 ], | 716 ], |
| 714 ], | 717 ], |
| 715 } | 718 } |
| OLD | NEW |