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

Side by Side Diff: gyp/gm.gyp

Issue 73643005: Implement a benchmark for GrResourceCache (Closed) Base URL: https://skia.googlecode.com/svn/trunk
Patch Set: address review comments Created 7 years, 1 month 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 | Annotate | Revision Log
OLDNEW
1 # GYP file to build the "gm" (golden master) executable. 1 # GYP file to build the "gm" (golden master) executable.
2 { 2 {
3 'includes': [ 3 'includes': [
4 'apptype_console.gypi', 4 'apptype_console.gypi',
5 ], 5 ],
6 'targets': [ 6 'targets': [
7 { 7 {
8 'target_name': 'gm_expectations', 8 'target_name': 'gm_expectations',
9 'type': 'static_library', 9 'type': 'static_library',
10 'include_dirs' : [ 10 'include_dirs' : [
(...skipping 86 matching lines...) Expand 10 before | Expand all | Expand 10 after
97 }, 97 },
98 }], 98 }],
99 ['skia_os == "win"', { 99 ['skia_os == "win"', {
100 'dependencies': [ 100 'dependencies': [
101 'xps.gyp:xps', 101 'xps.gyp:xps',
102 ], 102 ],
103 }], 103 }],
104 ['skia_gpu == 1', { 104 ['skia_gpu == 1', {
105 'include_dirs': [ 105 'include_dirs': [
106 '../src/gpu', 106 '../src/gpu',
107 '../src/gpu/utils',
107 ], 108 ],
108 'dependencies': [ 109 'dependencies': [
109 'gputest.gyp:skgputest', 110 'gputest.gyp:skgputest',
110 ], 111 ],
112 'sources': [
113 '../src/gpu/utils/GrUtils.h',
114 '../src/gpu/utils/GrUtils.cpp',
115 ],
111 }], 116 }],
112 ], 117 ],
113 }, 118 },
114 ], 119 ],
115 } 120 }
116 121
117 # Local Variables: 122 # Local Variables:
118 # tab-width:2 123 # tab-width:2
119 # indent-tabs-mode:nil 124 # indent-tabs-mode:nil
120 # End: 125 # End:
121 # vim: set expandtab tabstop=2 shiftwidth=2: 126 # vim: set expandtab tabstop=2 shiftwidth=2:
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698