| 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': [ |
| 8 'apptype_console.gypi', |
| 9 ], |
| 7 'targets': [ | 10 'targets': [ |
| 8 { | 11 { |
| 9 'target_name': 'visualbench', | 12 'target_name': 'visualbench', |
| 10 'type': 'executable', | 13 'type': 'executable', |
| 11 'mac_bundle' : 1, | 14 'mac_bundle' : 1, |
| 12 'include_dirs' : [ | 15 'include_dirs' : [ |
| 13 '../include/gpu', | 16 '../include/gpu', |
| 14 '../src/core', | 17 '../src/core', |
| 15 '../src/images', | 18 '../src/images', |
| 16 ], | 19 ], |
| (...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 64 '-landroid', | 67 '-landroid', |
| 65 '-lGLESv2', | 68 '-lGLESv2', |
| 66 '-lEGL', | 69 '-lEGL', |
| 67 ], | 70 ], |
| 68 }, | 71 }, |
| 69 }], | 72 }], |
| 70 ], | 73 ], |
| 71 }, | 74 }, |
| 72 ], | 75 ], |
| 73 } | 76 } |
| OLD | NEW |