OLD | NEW |
1 # GYP file to build performance testbench. | 1 # GYP file to build performance testbench. |
2 # | 2 # |
3 { | 3 { |
4 'includes': [ | 4 'includes': [ |
5 'apptype_console.gypi', | 5 'apptype_console.gypi', |
6 ], | 6 ], |
7 'targets': [ | 7 'targets': [ |
8 { | 8 { |
9 'target_name': 'bench', | 9 'target_name': 'bench', |
10 'type': 'executable', | 10 'type': 'executable', |
11 'include_dirs' : [ | 11 'include_dirs' : [ |
12 '../src/core', | 12 '../src/core', |
13 '../src/effects', | 13 '../src/effects', |
14 '../src/utils', | 14 '../src/utils', |
| 15 '../tools/', |
15 ], | 16 ], |
16 'includes': [ | 17 'includes': [ |
17 'bench.gypi' | 18 'bench.gypi' |
18 ], | 19 ], |
19 'dependencies': [ | 20 'dependencies': [ |
20 'skia_lib.gyp:skia_lib', | 21 'skia_lib.gyp:skia_lib', |
21 'bench_timer', | 22 'bench_timer', |
22 ], | 23 ], |
23 'conditions': [ | 24 'conditions': [ |
24 ['skia_gpu == 1', | 25 ['skia_gpu == 1', |
(...skipping 60 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
85 ], | 86 ], |
86 } | 87 } |
87 ], | 88 ], |
88 } | 89 } |
89 | 90 |
90 # Local Variables: | 91 # Local Variables: |
91 # tab-width:2 | 92 # tab-width:2 |
92 # indent-tabs-mode:nil | 93 # indent-tabs-mode:nil |
93 # End: | 94 # End: |
94 # vim: set expandtab tabstop=2 shiftwidth=2: | 95 # vim: set expandtab tabstop=2 shiftwidth=2: |
OLD | NEW |