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': 'nanobench', | 9 'target_name': 'nanobench', |
10 'type': 'executable', | 10 'type': 'executable', |
11 'sources': [ | 11 'sources': [ |
12 '../gm/gm.cpp', | 12 '../gm/gm.cpp', |
13 '../bench/GMBench.cpp', | 13 '../bench/GMBench.cpp', |
14 '../bench/RecordingBench.cpp', | 14 '../bench/RecordingBench.cpp', |
15 '../bench/SKPBench.cpp', | 15 '../bench/SKPBench.cpp', |
16 '../bench/nanobench.cpp', | 16 '../bench/nanobench.cpp', |
17 '../tools/LazyDecodeBitmap.cpp', | |
18 ], | 17 ], |
19 'includes': [ | 18 'includes': [ |
20 'bench.gypi', | 19 'bench.gypi', |
21 'gmslides.gypi', | 20 'gmslides.gypi', |
22 ], | 21 ], |
23 'dependencies': [ | 22 'dependencies': [ |
24 'flags.gyp:flags_common', | 23 'flags.gyp:flags_common', |
25 'jsoncpp.gyp:jsoncpp', | 24 'jsoncpp.gyp:jsoncpp', |
26 'skia_lib.gyp:skia_lib', | 25 'skia_lib.gyp:skia_lib', |
27 'tools.gyp:crash_handler', | 26 'tools.gyp:crash_handler', |
28 'tools.gyp:proc_stats', | 27 'tools.gyp:proc_stats', |
29 'tools.gyp:timer', | 28 'tools.gyp:timer', |
30 ], | 29 ], |
31 'conditions': [ | 30 'conditions': [ |
32 ['skia_android_framework', { | 31 ['skia_android_framework', { |
33 'libraries': [ | 32 'libraries': [ |
34 '-lskia', | 33 '-lskia', |
35 ], | 34 ], |
36 }], | 35 }], |
37 ], | 36 ], |
38 }, | 37 }, |
39 ], | 38 ], |
40 } | 39 } |
OLD | NEW |