Chromium Code Reviews| 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 performance testbench. | 5 # GYP file to build performance testbench. |
| 6 # | 6 # |
| 7 { | 7 { |
| 8 'includes': [ | 8 'includes': [ |
| 9 'apptype_console.gypi', | 9 'apptype_console.gypi', |
| 10 ], | 10 ], |
| (...skipping 19 matching lines...) Expand all Loading... | |
| 30 'jsoncpp.gyp:jsoncpp', | 30 'jsoncpp.gyp:jsoncpp', |
| 31 'skia_lib.gyp:skia_lib', | 31 'skia_lib.gyp:skia_lib', |
| 32 'tools.gyp:crash_handler', | 32 'tools.gyp:crash_handler', |
| 33 'tools.gyp:proc_stats', | 33 'tools.gyp:proc_stats', |
| 34 'tools.gyp:timer', | 34 'tools.gyp:timer', |
| 35 ], | 35 ], |
| 36 'conditions': [ | 36 'conditions': [ |
| 37 ['skia_android_framework', { | 37 ['skia_android_framework', { |
| 38 'libraries': [ | 38 'libraries': [ |
| 39 '-lskia', | 39 '-lskia', |
| 40 '-landroid', | |
| 41 '-lgui', | |
| 42 '-lhwui', | |
| 43 '-lutils', | |
| 44 ], | |
| 45 'include_dirs': [ | |
| 46 '../../../frameworks/base/libs/hwui/', | |
| 47 '../../../frameworks/native/include/', | |
| 48 '../src/utils/android/', | |
| 49 ], | |
| 50 'sources': [ | |
| 51 '../bench/nanobenchAndroid.cpp', | |
| 52 ], | |
| 53 'dependencies': [ | |
| 54 'utils.gyp:android_utils', | |
|
djsollen
2015/03/26 17:57:33
what is this needed for?
tomhudson
2015/03/26 18:05:03
SkAndroidSDKCanvas?
(Now from previous reviews, I
| |
| 40 ], | 55 ], |
| 41 }], | 56 }], |
| 42 ], | 57 ], |
| 43 }, | 58 }, |
| 44 ], | 59 ], |
| 45 } | 60 } |
| OLD | NEW |