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

Side by Side Diff: gyp/bench.gyp

Issue 282053002: Generate bench/Android.mk from gyp. (Closed) Base URL: https://skia.googlesource.com/skia.git@baselines
Patch Set: Created 6 years, 7 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
OLDNEW
1 # GYP file to build performance testbench. 1 # GYP file to build performance testbench.
2 # 2 #
3 { 3 {
4 'includes': [ 4 'includes': [
5 'apptype_console.gypi', 5 'apptype_console.gypi',
6 ], 6 ],
7 'targets': [ 7 'targets': [
8 { 8 {
9 'target_name': 'bench', 9 'target_name': 'bench',
10 'type': 'executable', 10 'type': 'executable',
(...skipping 15 matching lines...) Expand all
26 ['skia_gpu == 1', 26 ['skia_gpu == 1',
27 { 27 {
28 'include_dirs' : [ 28 'include_dirs' : [
29 '../src/gpu', 29 '../src/gpu',
30 ], 30 ],
31 'dependencies': [ 31 'dependencies': [
32 'gputest.gyp:skgputest', 32 'gputest.gyp:skgputest',
33 ], 33 ],
34 }, 34 },
35 ], 35 ],
36 ['skia_android_framework == 1',
37 {
38 'libraries': [
39 '-lskia',
40 '-lcutils',
41 ],
42 # FIXME (scroggo): JSON is disabled in Android framework until we
43 # solve skbug.com/2448
44 'dependencies!' : [
45 'jsoncpp.gyp:jsoncpp',
46 ],
47 },
48 ],
36 ], 49 ],
37 'includes': [ 50 'includes': [
38 'bench.gypi', 51 'bench.gypi',
39 'gmslides.gypi', 52 'gmslides.gypi',
40 ], 53 ],
41 }, 54 },
42 { 55 {
43 'target_name' : 'bench_timer', 56 'target_name' : 'bench_timer',
44 'type': 'static_library', 57 'type': 'static_library',
45 'sources': [ 58 'sources': [
(...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after
92 ['skia_gpu == 1', { 105 ['skia_gpu == 1', {
93 'sources': [ 106 'sources': [
94 '../bench/BenchGpuTimer_gl.h', 107 '../bench/BenchGpuTimer_gl.h',
95 '../bench/BenchGpuTimer_gl.cpp', 108 '../bench/BenchGpuTimer_gl.cpp',
96 ], 109 ],
97 }], 110 }],
98 ], 111 ],
99 } 112 }
100 ], 113 ],
101 } 114 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698