| 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/core', | 21 '../src/core', |
| 22 '../src/effects', | 22 '../src/effects', |
| 23 '../src/images', | 23 '../src/images', |
| 24 ], | 24 ], |
| 25 'sources': [ | 25 'sources': [ |
| 26 '../gm/gm.cpp', | 26 '../gm/gm.cpp', |
| 27 '../tools/VisualBench/VisualBench.h', | 27 '<!@(python find.py ../tools/VisualBench "*.cpp")', |
| 28 '../tools/VisualBench/VisualBench.cpp', | 28 '<!@(python find.py ../tools/VisualBench "*.h")', |
| 29 '../tools/VisualBench/VisualBenchmarkStream.h', | |
| 30 '../tools/VisualBench/VisualBenchmarkStream.cpp', | |
| 31 '../tools/VisualBench/VisualSKPBench.h', | |
| 32 '../tools/VisualBench/VisualSKPBench.cpp', | |
| 33 '<!@(python find.py ../bench "*.cpp")', | 29 '<!@(python find.py ../bench "*.cpp")', |
| 34 ], | 30 ], |
| 35 'sources!': [ | 31 'sources!': [ |
| 36 '../bench/nanobench.cpp', | 32 '../bench/nanobench.cpp', |
| 37 '../bench/nanobenchAndroid.cpp', | 33 '../bench/nanobenchAndroid.cpp', |
| 38 ], | 34 ], |
| 39 'dependencies': [ | 35 'dependencies': [ |
| 40 'etc1.gyp:libetc1', | 36 'etc1.gyp:libetc1', |
| 41 'flags.gyp:flags', | 37 'flags.gyp:flags', |
| 42 'jsoncpp.gyp:jsoncpp', | 38 'jsoncpp.gyp:jsoncpp', |
| (...skipping 15 matching lines...) Expand all Loading... |
| 58 '-landroid', | 54 '-landroid', |
| 59 '-lGLESv2', | 55 '-lGLESv2', |
| 60 '-lEGL', | 56 '-lEGL', |
| 61 ], | 57 ], |
| 62 }, | 58 }, |
| 63 }], | 59 }], |
| 64 ], | 60 ], |
| 65 }, | 61 }, |
| 66 ], | 62 ], |
| 67 } | 63 } |
| OLD | NEW |