| 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': [ |
| 11 { | 11 { |
| 12 'target_name': 'visualbench', | 12 'target_name': 'visualbench', |
| 13 'type': 'executable', | 13 'type': 'executable', |
| 14 'includes' : [ | 14 'includes' : [ |
| 15 'gmslides.gypi', | 15 'gmslides.gypi', |
| 16 ], | 16 ], |
| 17 'include_dirs' : [ | 17 'include_dirs' : [ |
| 18 '../bench', | 18 '../bench', |
| 19 '../include/gpu', | 19 '../include/gpu', |
| 20 '../include/private', | 20 '../include/private', |
| 21 '../src/codec', |
| 21 '../src/core', | 22 '../src/core', |
| 22 '../src/effects', | 23 '../src/effects', |
| 23 '../src/images', | 24 '../src/images', |
| 24 ], | 25 ], |
| 25 'sources': [ | 26 'sources': [ |
| 26 '../gm/gm.cpp', | 27 '../gm/gm.cpp', |
| 27 '<!@(python find.py ../tools/VisualBench "*.cpp")', | 28 '<!@(python find.py ../tools/VisualBench "*.cpp")', |
| 28 '<!@(python find.py ../tools/VisualBench "*.h")', | 29 '<!@(python find.py ../tools/VisualBench "*.h")', |
| 29 '<!@(python find.py ../bench "*.cpp")', | 30 '<!@(python find.py ../bench "*.cpp")', |
| 30 ], | 31 ], |
| (...skipping 24 matching lines...) Expand all Loading... |
| 55 '-landroid', | 56 '-landroid', |
| 56 '-lGLESv2', | 57 '-lGLESv2', |
| 57 '-lEGL', | 58 '-lEGL', |
| 58 ], | 59 ], |
| 59 }, | 60 }, |
| 60 }], | 61 }], |
| 61 ], | 62 ], |
| 62 }, | 63 }, |
| 63 ], | 64 ], |
| 64 } | 65 } |
| OLD | NEW |