| 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 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 51 'android_deps.gyp:native_app_glue', | 51 'android_deps.gyp:native_app_glue', |
| 52 ], | 52 ], |
| 53 'link_settings': { | 53 'link_settings': { |
| 54 'libraries': [ | 54 'libraries': [ |
| 55 '-landroid', | 55 '-landroid', |
| 56 '-lGLESv2', | 56 '-lGLESv2', |
| 57 '-lEGL', | 57 '-lEGL', |
| 58 ], | 58 ], |
| 59 }, | 59 }, |
| 60 }], | 60 }], |
| 61 [ 'skia_os == "android" and skia_use_sdl == 1', { |
| 62 'dependencies': [ |
| 63 'android_deps.gyp:Android_VisualBenchSDL', |
| 64 ], |
| 65 }], |
| 61 ], | 66 ], |
| 62 }, | 67 }, |
| 63 ], | 68 ], |
| 64 } | 69 } |
| OLD | NEW |