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

Side by Side Diff: gyp/gpu.gyp

Issue 50413011: Allow specifying the max texture count on the bots (Closed) Base URL: http://skia.googlecode.com/svn/trunk/
Patch Set: Don't turn on for N10 just yet 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
« no previous file with comments | « gyp/common_variables.gypi ('k') | include/gpu/GrConfig.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 { 1 {
2 'target_defaults': { 2 'target_defaults': {
3 'conditions': [ 3 'conditions': [
4 ['skia_os != "win"', { 4 ['skia_os != "win"', {
5 'sources/': [ ['exclude', '_win.(h|cpp)$'], 5 'sources/': [ ['exclude', '_win.(h|cpp)$'],
6 ], 6 ],
7 }], 7 }],
8 ['skia_os != "mac"', { 8 ['skia_os != "mac"', {
9 'sources/': [ ['exclude', '_mac.(h|cpp|m|mm)$'], 9 'sources/': [ ['exclude', '_mac.(h|cpp|m|mm)$'],
10 ], 10 ],
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after
43 }, 43 },
44 'direct_dependent_settings': { 44 'direct_dependent_settings': {
45 'defines/': [ 45 'defines/': [
46 ['exclude', '.*'], 46 ['exclude', '.*'],
47 ], 47 ],
48 'include_dirs/': [ 48 'include_dirs/': [
49 ['exclude', '.*'], 49 ['exclude', '.*'],
50 ], 50 ],
51 }, 51 },
52 }], 52 }],
53 [ 'skia_texture_cache_mb_limit != 0', { 53 [ 'skia_resource_cache_mb_limit != 0', {
54 'defines': [ 54 'defines': [
55 'GR_DEFAULT_TEXTURE_CACHE_MB_LIMIT=<(skia_texture_cache_mb_limit)', 55 'GR_DEFAULT_RESOURCE_CACHE_MB_LIMIT=<(skia_resource_cache_mb_limit)',
56 ],
57 }],
58 [ 'skia_resource_cache_count_limit != 0', {
59 'defines': [
60 'GR_DEFAULT_RESOURCE_CACHE_COUNT_LIMIT=<(skia_resource_cache_count_lim it)',
56 ], 61 ],
57 }], 62 }],
58 ], 63 ],
59 'direct_dependent_settings': { 64 'direct_dependent_settings': {
60 'conditions': [ 65 'conditions': [
61 [ 'skia_os == "win"', { 66 [ 'skia_os == "win"', {
62 'defines': [ 67 'defines': [
63 'GR_GL_FUNCTION_TYPE=__stdcall', 68 'GR_GL_FUNCTION_TYPE=__stdcall',
64 ], 69 ],
65 }], 70 }],
(...skipping 147 matching lines...) Expand 10 before | Expand all | Expand 10 after
213 ], 218 ],
214 }, 219 },
215 ], 220 ],
216 } 221 }
217 222
218 # Local Variables: 223 # Local Variables:
219 # tab-width:2 224 # tab-width:2
220 # indent-tabs-mode:nil 225 # indent-tabs-mode:nil
221 # End: 226 # End:
222 # vim: set expandtab tabstop=2 shiftwidth=2: 227 # vim: set expandtab tabstop=2 shiftwidth=2:
OLDNEW
« no previous file with comments | « gyp/common_variables.gypi ('k') | include/gpu/GrConfig.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698