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 performance testbench. | 5 # GYP file to build performance testbench. |
6 # | 6 # |
7 { | 7 { |
8 'includes': [ | 8 'includes': [ |
9 'apptype_console.gypi', | 9 'apptype_console.gypi', |
10 ], | 10 ], |
11 'targets': [ | 11 'targets': [ |
12 { | 12 { |
13 'target_name': 'nanobench', | 13 'target_name': 'nanobench', |
14 'type': 'executable', | 14 'type': 'executable', |
15 'sources': [ | 15 'sources': [ |
16 '../gm/gm.cpp', | 16 '../gm/gm.cpp', |
| 17 '../bench/CodecBench.cpp', |
17 '../bench/DecodingBench.cpp', | 18 '../bench/DecodingBench.cpp', |
18 '../bench/DecodingSubsetBench.cpp', | 19 '../bench/DecodingSubsetBench.cpp', |
19 '../bench/GMBench.cpp', | 20 '../bench/GMBench.cpp', |
20 '../bench/RecordingBench.cpp', | 21 '../bench/RecordingBench.cpp', |
21 '../bench/SKPBench.cpp', | 22 '../bench/SKPBench.cpp', |
22 '../bench/nanobench.cpp', | 23 '../bench/nanobench.cpp', |
23 ], | 24 ], |
24 'includes': [ | 25 'includes': [ |
25 'bench.gypi', | 26 'bench.gypi', |
26 'gmslides.gypi', | 27 'gmslides.gypi', |
(...skipping 23 matching lines...) Expand all Loading... |
50 '../bench/nanobenchAndroid.cpp', | 51 '../bench/nanobenchAndroid.cpp', |
51 ], | 52 ], |
52 'dependencies': [ | 53 'dependencies': [ |
53 'utils.gyp:android_utils', | 54 'utils.gyp:android_utils', |
54 ], | 55 ], |
55 }], | 56 }], |
56 ], | 57 ], |
57 }, | 58 }, |
58 ], | 59 ], |
59 } | 60 } |
OLD | NEW |