diff options
author | commit-bot@chromium.org <commit-bot@chromium.org@2bbb7eff-a529-9590-31e7-b0007b416f81> | 2013-07-19 18:54:04 +0000 |
---|---|---|
committer | commit-bot@chromium.org <commit-bot@chromium.org@2bbb7eff-a529-9590-31e7-b0007b416f81> | 2013-07-19 18:54:04 +0000 |
commit | 6645cde43d7dbf0df76dbda2c089d8f58560e3e2 (patch) | |
tree | 1664f8f52c69f9a7ef75e4d94cfa716f67554c7a /gyp | |
parent | fc70a4ae593aec6bbaeb1b6573627328b2ef2ad0 (diff) |
Fix build problem with reverted issue 16948011
BUG=
R=caryclark@google.com
Author: sglez@google.com
Review URL: https://chromiumcodereview.appspot.com/19541009
git-svn-id: http://skia.googlecode.com/svn/trunk@10201 2bbb7eff-a529-9590-31e7-b0007b416f81
Diffstat (limited to 'gyp')
-rw-r--r-- | gyp/tools.gyp | 24 |
1 files changed, 23 insertions, 1 deletions
diff --git a/gyp/tools.gyp b/gyp/tools.gyp index 5d7c92e6ae..4cbdf4b1ba 100644 --- a/gyp/tools.gyp +++ b/gyp/tools.gyp @@ -15,7 +15,7 @@ 'dependencies': [ 'bench_pictures', 'filter', - 'lua_pictures', + 'bbh_shootout', 'lua_app', 'pinspect', 'render_pdfs', @@ -300,6 +300,28 @@ ], }, { + 'target_name': 'bbh_shootout', + 'type': 'executable', + 'include_dirs': [ + '../bench', + '../tools/' + ], + 'sources': [ + '../tools/bbh_shootout.cpp', + + # Bench code: + '../bench/TimerData.h', + '../bench/TimerData.cpp', + ], + 'dependencies': [ + 'skia_lib.gyp:skia_lib', + 'bench.gyp:bench_timer', + 'tools.gyp:picture_utils', + 'tools.gyp:picture_renderer', + 'flags.gyp:flags', + ], + }, + { 'target_name': 'filter', 'type': 'executable', 'include_dirs' : [ |