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 23 matching lines...) Expand all Loading... |
34 ], | 34 ], |
35 'dependencies': [ | 35 'dependencies': [ |
36 'etc1.gyp:libetc1', | 36 'etc1.gyp:libetc1', |
37 'flags.gyp:flags', | 37 'flags.gyp:flags', |
38 'jsoncpp.gyp:jsoncpp', | 38 'jsoncpp.gyp:jsoncpp', |
39 'gputest.gyp:skgputest', | 39 'gputest.gyp:skgputest', |
40 'skia_lib.gyp:skia_lib', | 40 'skia_lib.gyp:skia_lib', |
41 'tools.gyp:proc_stats', | 41 'tools.gyp:proc_stats', |
42 'tools.gyp:sk_tool_utils', | 42 'tools.gyp:sk_tool_utils', |
43 'tools.gyp:timer', | 43 'tools.gyp:timer', |
| 44 'tools.gyp:url_data_manager', |
44 'views.gyp:views', | 45 'views.gyp:views', |
45 ], | 46 ], |
46 'conditions' : [ | 47 'conditions' : [ |
47 [ 'skia_os == "android" and skia_use_sdl == 0', { | 48 [ 'skia_os == "android" and skia_use_sdl == 0', { |
48 'dependencies': [ | 49 'dependencies': [ |
49 'android_deps.gyp:Android_VisualBench', | 50 'android_deps.gyp:Android_VisualBench', |
50 'android_deps.gyp:native_app_glue', | 51 'android_deps.gyp:native_app_glue', |
51 ], | 52 ], |
52 'link_settings': { | 53 'link_settings': { |
53 'libraries': [ | 54 'libraries': [ |
54 '-landroid', | 55 '-landroid', |
55 '-lGLESv2', | 56 '-lGLESv2', |
56 '-lEGL', | 57 '-lEGL', |
57 ], | 58 ], |
58 }, | 59 }, |
59 }], | 60 }], |
60 [ 'skia_os == "android" and skia_use_sdl == 1', { | 61 [ 'skia_os == "android" and skia_use_sdl == 1', { |
61 'dependencies': [ | 62 'dependencies': [ |
62 'android_deps.gyp:Android_VisualBenchSDL', | 63 'android_deps.gyp:Android_VisualBenchSDL', |
63 ], | 64 ], |
64 }], | 65 }], |
65 ], | 66 ], |
66 }, | 67 }, |
67 ], | 68 ], |
68 } | 69 } |
OLD | NEW |