| OLD | NEW |
| 1 # Copyright 2015 Google Inc. | 1 # Copyright 2015 Google Inc. |
| 2 # | 2 # |
| 3 # Use of this source code is governed by a BSD-style license that can be | 3 # Use of this source code is governed by a BSD-style license that can be |
| 4 # found in the LICENSE file. | 4 # found in the LICENSE file. |
| 5 # GYP file to build various tools. | 5 # GYP file to build various tools. |
| 6 # | 6 # |
| 7 # To build on Linux: | 7 # To build on Linux: |
| 8 # ./gyp_skia tools.gyp && make tools | 8 # ./gyp_skia tools.gyp && make tools |
| 9 # | 9 # |
| 10 { | 10 { |
| (...skipping 19 matching lines...) Expand all Loading... |
| 30 'render_pdfs', | 30 'render_pdfs', |
| 31 'render_pictures', | 31 'render_pictures', |
| 32 'skdiff', | 32 'skdiff', |
| 33 'skhello', | 33 'skhello', |
| 34 'skp2svg', | 34 'skp2svg', |
| 35 'skpdiff', | 35 'skpdiff', |
| 36 'skpinfo', | 36 'skpinfo', |
| 37 'skpmaker', | 37 'skpmaker', |
| 38 'test_image_decoder', | 38 'test_image_decoder', |
| 39 'test_public_includes', | 39 'test_public_includes', |
| 40 'whitelist_typefaces', |
| 40 ], | 41 ], |
| 41 'conditions': [ | 42 'conditions': [ |
| 42 ['skia_shared_lib', | 43 ['skia_shared_lib', |
| 43 { | 44 { |
| 44 'dependencies': [ | 45 'dependencies': [ |
| 45 'sklua', # This can only be built if skia is built as a shared lib
rary | 46 'sklua', # This can only be built if skia is built as a shared lib
rary |
| 46 ], | 47 ], |
| 47 }, | 48 }, |
| 48 ], | 49 ], |
| 49 ], | 50 ], |
| (...skipping 594 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 644 'type': 'static_library', | 645 'type': 'static_library', |
| 645 'sources': [ | 646 'sources': [ |
| 646 '../tools/ProcStats.h', | 647 '../tools/ProcStats.h', |
| 647 '../tools/ProcStats.cpp', | 648 '../tools/ProcStats.cpp', |
| 648 ], | 649 ], |
| 649 'direct_dependent_settings': { | 650 'direct_dependent_settings': { |
| 650 'include_dirs': [ '../tools', ], | 651 'include_dirs': [ '../tools', ], |
| 651 }, | 652 }, |
| 652 }, | 653 }, |
| 653 { | 654 { |
| 655 'target_name': 'whitelist_typefaces', |
| 656 'type': 'executable', |
| 657 'sources': [ |
| 658 '../tools/whitelist_typefaces.cpp', |
| 659 ], |
| 660 'dependencies': [ |
| 661 'skia_lib.gyp:skia_lib', |
| 662 ], |
| 663 }, |
| 664 { |
| 654 'target_name': 'test_public_includes', | 665 'target_name': 'test_public_includes', |
| 655 'type': 'static_library', | 666 'type': 'static_library', |
| 656 # Ensure that our public headers don't have unused params so that clients | 667 # Ensure that our public headers don't have unused params so that clients |
| 657 # (e.g. Android) that include us can build with these warnings enabled | 668 # (e.g. Android) that include us can build with these warnings enabled |
| 658 'cflags!': [ '-Wno-unused-parameter' ], | 669 'cflags!': [ '-Wno-unused-parameter' ], |
| 659 'variables': { | 670 'variables': { |
| 660 'includes_to_test': [ | 671 'includes_to_test': [ |
| 661 '<(skia_include_path)/animator', | 672 '<(skia_include_path)/animator', |
| 662 '<(skia_include_path)/c', | 673 '<(skia_include_path)/c', |
| 663 '<(skia_include_path)/config', | 674 '<(skia_include_path)/config', |
| (...skipping 146 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 810 'flags.gyp:flags', | 821 'flags.gyp:flags', |
| 811 'skia_lib.gyp:skia_lib', | 822 'skia_lib.gyp:skia_lib', |
| 812 'resources', | 823 'resources', |
| 813 ], | 824 ], |
| 814 }, | 825 }, |
| 815 ], | 826 ], |
| 816 }, | 827 }, |
| 817 ], | 828 ], |
| 818 ], | 829 ], |
| 819 } | 830 } |
| OLD | NEW |