Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(251)

Side by Side Diff: gyp/bench.gyp

Issue 1029423010: Android HWUI backend Nanobench (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Created 5 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« bench/nanobenchAndroid.h ('K') | « bench/nanobenchAndroid.cpp ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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 }
OLDNEW
« bench/nanobenchAndroid.h ('K') | « bench/nanobenchAndroid.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698