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

Side by Side Diff: gyp/common_variables.gypi

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 | « no previous file | gyp/gpu.gyp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright 2012 The Android Open Source Project 1 # Copyright 2012 The Android Open Source Project
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 5
6 { 6 {
7 # Get ready for the ugly... 7 # Get ready for the ugly...
8 # 8 #
9 # - We have to nest our variables dictionaries multiple levels deep, so that 9 # - We have to nest our variables dictionaries multiple levels deep, so that
10 # this and other gyp files can rely on previously-set variable values in 10 # this and other gyp files can rely on previously-set variable values in
(...skipping 66 matching lines...) Expand 10 before | Expand all | Expand 10 after
77 'arm_neon%': 0, 77 'arm_neon%': 0,
78 }], 78 }],
79 ], 79 ],
80 80
81 'skia_sanitizer%': '', 81 'skia_sanitizer%': '',
82 'skia_scalar%': 'float', 82 'skia_scalar%': 'float',
83 'skia_mesa%': 0, 83 'skia_mesa%': 0,
84 'skia_nv_path_rendering%': 0, 84 'skia_nv_path_rendering%': 0,
85 'skia_stroke_path_rendering%': 0, 85 'skia_stroke_path_rendering%': 0,
86 'skia_android_path_rendering%': 0, 86 'skia_android_path_rendering%': 0,
87 'skia_texture_cache_mb_limit%': 0, 87 'skia_resource_cache_mb_limit%': 0,
88 'skia_resource_cache_count_limit%': 0,
88 'skia_angle%': 0, 89 'skia_angle%': 0,
89 'skia_directwrite%': 0, 90 'skia_directwrite%': 0,
90 'skia_gpu%': 1, 91 'skia_gpu%': 1,
91 'skia_osx_sdkroot%': '', 92 'skia_osx_sdkroot%': '',
92 'skia_profile_enabled%': 0, 93 'skia_profile_enabled%': 0,
93 'skia_win_debuggers_path%': '', 94 'skia_win_debuggers_path%': '',
94 'skia_shared_lib%': 0, 95 'skia_shared_lib%': 0,
95 'skia_opencl%': 0, 96 'skia_opencl%': 0,
96 97
97 # These variables determine the default optimization level for different 98 # These variables determine the default optimization level for different
(...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after
133 'arm_neon%': '<(arm_neon)', 134 'arm_neon%': '<(arm_neon)',
134 'arm_neon_optional%': 0, 135 'arm_neon_optional%': 0,
135 'skia_os%': '<(skia_os)', 136 'skia_os%': '<(skia_os)',
136 'os_posix%': '<(os_posix)', 137 'os_posix%': '<(os_posix)',
137 'skia_sanitizer%': '<(skia_sanitizer)', 138 'skia_sanitizer%': '<(skia_sanitizer)',
138 'skia_scalar%': '<(skia_scalar)', 139 'skia_scalar%': '<(skia_scalar)',
139 'skia_mesa%': '<(skia_mesa)', 140 'skia_mesa%': '<(skia_mesa)',
140 'skia_nv_path_rendering%': '<(skia_nv_path_rendering)', 141 'skia_nv_path_rendering%': '<(skia_nv_path_rendering)',
141 'skia_stroke_path_rendering%': '<(skia_stroke_path_rendering)', 142 'skia_stroke_path_rendering%': '<(skia_stroke_path_rendering)',
142 'skia_android_path_rendering%': '<(skia_android_path_rendering)', 143 'skia_android_path_rendering%': '<(skia_android_path_rendering)',
143 'skia_texture_cache_mb_limit%': '<(skia_texture_cache_mb_limit)', 144 'skia_resource_cache_mb_limit%': '<(skia_resource_cache_mb_limit)',
145 'skia_resource_cache_count_limit%': '<(skia_resource_cache_count_limit)',
144 'skia_angle%': '<(skia_angle)', 146 'skia_angle%': '<(skia_angle)',
145 'skia_arch_width%': '<(skia_arch_width)', 147 'skia_arch_width%': '<(skia_arch_width)',
146 'skia_arch_type%': '<(skia_arch_type)', 148 'skia_arch_type%': '<(skia_arch_type)',
147 'skia_directwrite%': '<(skia_directwrite)', 149 'skia_directwrite%': '<(skia_directwrite)',
148 'skia_gpu%': '<(skia_gpu)', 150 'skia_gpu%': '<(skia_gpu)',
149 'skia_win_exceptions%': 0, 151 'skia_win_exceptions%': 0,
150 'skia_osx_sdkroot%': '<(skia_osx_sdkroot)', 152 'skia_osx_sdkroot%': '<(skia_osx_sdkroot)',
151 'skia_profile_enabled%': '<(skia_profile_enabled)', 153 'skia_profile_enabled%': '<(skia_profile_enabled)',
152 'skia_shared_lib%': '<(skia_shared_lib)', 154 'skia_shared_lib%': '<(skia_shared_lib)',
153 'skia_opencl%': '<(skia_opencl)', 155 'skia_opencl%': '<(skia_opencl)',
154 'skia_static_initializers%': '<(skia_static_initializers)', 156 'skia_static_initializers%': '<(skia_static_initializers)',
155 'ios_sdk_version%': '6.0', 157 'ios_sdk_version%': '6.0',
156 'skia_win_debuggers_path%': '<(skia_win_debuggers_path)', 158 'skia_win_debuggers_path%': '<(skia_win_debuggers_path)',
157 159
158 # These are referenced by our .gypi files that list files (e.g. core.gypi) 160 # These are referenced by our .gypi files that list files (e.g. core.gypi)
159 # 161 #
160 'skia_src_path%': '../src', 162 'skia_src_path%': '../src',
161 'skia_include_path%': '../include', 163 'skia_include_path%': '../include',
162 }, 164 },
163 } 165 }
164 # Local Variables: 166 # Local Variables:
165 # tab-width:2 167 # tab-width:2
166 # indent-tabs-mode:nil 168 # indent-tabs-mode:nil
167 # End: 169 # End:
168 # vim: set expandtab tabstop=2 shiftwidth=2: 170 # vim: set expandtab tabstop=2 shiftwidth=2:
OLDNEW
« no previous file with comments | « no previous file | gyp/gpu.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698