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 visual bench tool | 5 # GYP file to build visual bench tool |
6 { | 6 { |
7 'includes': [ | 7 'includes': [ |
8 'apptype_console.gypi', | 8 'apptype_console.gypi', |
9 ], | 9 ], |
10 'targets': [ | 10 'targets': [ |
(...skipping 21 matching lines...) Expand all Loading... |
32 '../tools/VisualBench/VisualSKPBench.cpp', | 32 '../tools/VisualBench/VisualSKPBench.cpp', |
33 '<!@(python find.py ../bench "*.cpp")', | 33 '<!@(python find.py ../bench "*.cpp")', |
34 ], | 34 ], |
35 'sources!': [ | 35 'sources!': [ |
36 '../bench/nanobench.cpp', | 36 '../bench/nanobench.cpp', |
37 '../bench/nanobenchAndroid.cpp', | 37 '../bench/nanobenchAndroid.cpp', |
38 ], | 38 ], |
39 'dependencies': [ | 39 'dependencies': [ |
40 'etc1.gyp:libetc1', | 40 'etc1.gyp:libetc1', |
41 'flags.gyp:flags', | 41 'flags.gyp:flags', |
| 42 'jsoncpp.gyp:jsoncpp', |
42 'gputest.gyp:skgputest', | 43 'gputest.gyp:skgputest', |
43 'skia_lib.gyp:skia_lib', | 44 'skia_lib.gyp:skia_lib', |
44 'tools.gyp:proc_stats', | 45 'tools.gyp:proc_stats', |
45 'tools.gyp:sk_tool_utils', | 46 'tools.gyp:sk_tool_utils', |
46 'tools.gyp:timer', | 47 'tools.gyp:timer', |
47 'views.gyp:views', | 48 'views.gyp:views', |
48 ], | 49 ], |
49 'conditions' : [ | 50 'conditions' : [ |
50 [ 'skia_os == "android"', { | 51 [ 'skia_os == "android"', { |
51 'dependencies': [ | 52 'dependencies': [ |
52 'android_deps.gyp:Android_VisualBench', | 53 'android_deps.gyp:Android_VisualBench', |
53 'android_deps.gyp:native_app_glue', | 54 'android_deps.gyp:native_app_glue', |
54 ], | 55 ], |
55 'link_settings': { | 56 'link_settings': { |
56 'libraries': [ | 57 'libraries': [ |
57 '-landroid', | 58 '-landroid', |
58 '-lGLESv2', | 59 '-lGLESv2', |
59 '-lEGL', | 60 '-lEGL', |
60 ], | 61 ], |
61 }, | 62 }, |
62 }], | 63 }], |
63 ], | 64 ], |
64 }, | 65 }, |
65 ], | 66 ], |
66 } | 67 } |
OLD | NEW |