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

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: Remove modifications to generated files to submit. 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
« no previous file with comments | « bench/benchmain.cpp ('k') | gyp/common_conditions.gypi » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 },
43 ],
36 ], 44 ],
37 'includes': [ 45 'includes': [
38 'bench.gypi', 46 'bench.gypi',
39 'gmslides.gypi', 47 'gmslides.gypi',
40 ], 48 ],
41 }, 49 },
42 { 50 {
43 'target_name' : 'bench_timer', 51 'target_name' : 'bench_timer',
44 'type': 'static_library', 52 'type': 'static_library',
45 'sources': [ 53 'sources': [
(...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after
92 ['skia_gpu == 1', { 100 ['skia_gpu == 1', {
93 'sources': [ 101 'sources': [
94 '../bench/BenchGpuTimer_gl.h', 102 '../bench/BenchGpuTimer_gl.h',
95 '../bench/BenchGpuTimer_gl.cpp', 103 '../bench/BenchGpuTimer_gl.cpp',
96 ], 104 ],
97 }], 105 }],
98 ], 106 ],
99 } 107 }
100 ], 108 ],
101 } 109 }
OLDNEW
« no previous file with comments | « bench/benchmain.cpp ('k') | gyp/common_conditions.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698