| 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 571 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 582 { | 582 { |
| 583 'target_name': 'test_public_includes', | 583 'target_name': 'test_public_includes', |
| 584 'type': 'static_library', | 584 'type': 'static_library', |
| 585 # Ensure that our public headers don't have unused params so that clients | 585 # Ensure that our public headers don't have unused params so that clients |
| 586 # (e.g. Android) that include us can build with these warnings enabled | 586 # (e.g. Android) that include us can build with these warnings enabled |
| 587 'cflags!': [ '-Wno-unused-parameter' ], | 587 'cflags!': [ '-Wno-unused-parameter' ], |
| 588 'variables': { | 588 'variables': { |
| 589 'includes_to_test': [ | 589 'includes_to_test': [ |
| 590 '<(skia_include_path)/animator', | 590 '<(skia_include_path)/animator', |
| 591 '<(skia_include_path)/c', | 591 '<(skia_include_path)/c', |
| 592 '<(skia_include_path)/codec', |
| 592 '<(skia_include_path)/config', | 593 '<(skia_include_path)/config', |
| 593 '<(skia_include_path)/core', | 594 '<(skia_include_path)/core', |
| 594 '<(skia_include_path)/effects', | 595 '<(skia_include_path)/effects', |
| 595 '<(skia_include_path)/gpu', | 596 '<(skia_include_path)/gpu', |
| 596 '<(skia_include_path)/images', | 597 '<(skia_include_path)/images', |
| 597 '<(skia_include_path)/pathops', | 598 '<(skia_include_path)/pathops', |
| 598 '<(skia_include_path)/pipe', | 599 '<(skia_include_path)/pipe', |
| 599 '<(skia_include_path)/ports', | 600 '<(skia_include_path)/ports', |
| 600 '<(skia_include_path)/svg/parser', | 601 '<(skia_include_path)/svg/parser', |
| 601 '<(skia_include_path)/utils', | 602 '<(skia_include_path)/utils', |
| (...skipping 135 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 737 'flags.gyp:flags', | 738 'flags.gyp:flags', |
| 738 'skia_lib.gyp:skia_lib', | 739 'skia_lib.gyp:skia_lib', |
| 739 'resources', | 740 'resources', |
| 740 ], | 741 ], |
| 741 }, | 742 }, |
| 742 ], | 743 ], |
| 743 }, | 744 }, |
| 744 ], | 745 ], |
| 745 ], | 746 ], |
| 746 } | 747 } |
| OLD | NEW |