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', |
(...skipping 15 matching lines...) Expand all Loading... |
26 ['skia_gpu == 1', | 26 ['skia_gpu == 1', |
27 { | 27 { |
28 'include_dirs' : [ | 28 'include_dirs' : [ |
29 '../src/gpu', | 29 '../src/gpu', |
30 ], | 30 ], |
31 'dependencies': [ | 31 'dependencies': [ |
32 'gputest.gyp:skgputest', | 32 'gputest.gyp:skgputest', |
33 ], | 33 ], |
34 }, | 34 }, |
35 ], | 35 ], |
| 36 ['skia_android_framework == 1', |
| 37 { |
| 38 'libraries': [ |
| 39 '-lskia', |
| 40 '-lcutils', |
| 41 ], |
| 42 }, |
| 43 ], |
36 ], | 44 ], |
37 'includes': [ | 45 'includes': [ |
38 'bench.gypi', | 46 'bench.gypi', |
39 'gmslides.gypi', | 47 'gmslides.gypi', |
40 ], | 48 ], |
41 }, | 49 }, |
42 { | 50 { |
43 'target_name' : 'bench_timer', | 51 'target_name' : 'bench_timer', |
44 'type': 'static_library', | 52 'type': 'static_library', |
45 'sources': [ | 53 'sources': [ |
(...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
92 ['skia_gpu == 1', { | 100 ['skia_gpu == 1', { |
93 'sources': [ | 101 'sources': [ |
94 '../bench/BenchGpuTimer_gl.h', | 102 '../bench/BenchGpuTimer_gl.h', |
95 '../bench/BenchGpuTimer_gl.cpp', | 103 '../bench/BenchGpuTimer_gl.cpp', |
96 ], | 104 ], |
97 }], | 105 }], |
98 ], | 106 ], |
99 } | 107 } |
100 ], | 108 ], |
101 } | 109 } |
OLD | NEW |