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 72 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
83 'include_dirs': [ | 83 'include_dirs': [ |
84 '../include/private', | 84 '../include/private', |
85 '../src/core', | 85 '../src/core', |
86 ], | 86 ], |
87 'dependencies': [ | 87 'dependencies': [ |
88 'flags.gyp:flags', | 88 'flags.gyp:flags', |
89 'skia_lib.gyp:skia_lib', | 89 'skia_lib.gyp:skia_lib', |
90 ], | 90 ], |
91 }, | 91 }, |
92 { | 92 { |
| 93 'target_name': 'monobench', |
| 94 'type': 'executable', |
| 95 'dependencies': [ |
| 96 'flags.gyp:flags', |
| 97 'flags.gyp:flags_common', |
| 98 'resources', |
| 99 'skia_lib.gyp:skia_lib', |
| 100 'timer', |
| 101 'pdf.gyp:pdf', |
| 102 'tools.gyp:sk_tool_utils', |
| 103 ], |
| 104 'include_dirs': [ |
| 105 '../bench', |
| 106 '../include/private', |
| 107 '../src/core', |
| 108 '../src/effects', |
| 109 '../src/effects/gradients', |
| 110 '../src/image', |
| 111 '../src/gpu', |
| 112 '../src/pdf', |
| 113 '../src/utils', |
| 114 ], |
| 115 'sources': [ |
| 116 '../tools/monobench.cpp', |
| 117 '../bench/Benchmark.cpp', |
| 118 '<!@(python find.py ../bench "*Bench.cpp")', |
| 119 ], |
| 120 'sources!': [ |
| 121 '../bench/GMBench.cpp', |
| 122 ], |
| 123 }, |
| 124 { |
93 'target_name': 'chrome_fuzz', | 125 'target_name': 'chrome_fuzz', |
94 'type': 'executable', | 126 'type': 'executable', |
95 'sources': [ | 127 'sources': [ |
96 '../tools/chrome_fuzz.cpp', | 128 '../tools/chrome_fuzz.cpp', |
97 ], | 129 ], |
98 'dependencies': [ | 130 'dependencies': [ |
99 'skia_lib.gyp:skia_lib', | 131 'skia_lib.gyp:skia_lib', |
100 ], | 132 ], |
101 }, | 133 }, |
102 { | 134 { |
(...skipping 540 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
643 'pdf.gyp:pdf', | 675 'pdf.gyp:pdf', |
644 'gputest.gyp:osmesa', | 676 'gputest.gyp:osmesa', |
645 ], | 677 ], |
646 'defines': [ 'FIDDLE_BUILD_TEST' ], | 678 'defines': [ 'FIDDLE_BUILD_TEST' ], |
647 }, | 679 }, |
648 ], | 680 ], |
649 }, | 681 }, |
650 ], | 682 ], |
651 ], | 683 ], |
652 } | 684 } |
OLD | NEW |