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

Side by Side Diff: gyp/common_variables.gypi

Issue 195213003: Add compile flag to force usage of distance fields for all SkPaints. (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Activate distance fields in an internal location Created 6 years, 9 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 | « gyp/common_conditions.gypi ('k') | src/gpu/GrDistanceFieldTextContext.cpp » ('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 124 matching lines...) Expand 10 before | Expand all | Expand 10 after
135 'skia_resource_cache_mb_limit%': 0, 135 'skia_resource_cache_mb_limit%': 0,
136 'skia_resource_cache_count_limit%': 0, 136 'skia_resource_cache_count_limit%': 0,
137 'skia_angle%': 0, 137 'skia_angle%': 0,
138 'skia_directwrite%': 0, 138 'skia_directwrite%': 0,
139 'skia_gpu%': 1, 139 'skia_gpu%': 1,
140 'skia_osx_deployment_target%': '', 140 'skia_osx_deployment_target%': '',
141 'skia_profile_enabled%': 0, 141 'skia_profile_enabled%': 0,
142 'skia_win_debuggers_path%': '', 142 'skia_win_debuggers_path%': '',
143 'skia_shared_lib%': 0, 143 'skia_shared_lib%': 0,
144 'skia_opencl%': 0, 144 'skia_opencl%': 0,
145 'skia_force_distancefield_fonts%': 0,
145 146
146 # These variables determine the default optimization level for different 147 # These variables determine the default optimization level for different
147 # compilers. 148 # compilers.
148 'skia_default_vs_optimization_level': 3, # full (/Ox) 149 'skia_default_vs_optimization_level': 3, # full (/Ox)
149 'skia_default_gcc_optimization_level': 3, # -O3 150 'skia_default_gcc_optimization_level': 3, # -O3
150 }, 151 },
151 152
152 'conditions': [ 153 'conditions': [
153 [ 'skia_os == "win" and skia_arch_width == 32 or ' 154 [ 'skia_os == "win" and skia_arch_width == 32 or '
154 'skia_os in ["linux", "freebsd", "openbsd", "solaris", "android"] ' 155 'skia_os in ["linux", "freebsd", "openbsd", "solaris", "android"] '
(...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after
203 'skia_arch_width%': '<(skia_arch_width)', 204 'skia_arch_width%': '<(skia_arch_width)',
204 'skia_arch_type%': '<(skia_arch_type)', 205 'skia_arch_type%': '<(skia_arch_type)',
205 'skia_chrome_utils%': '<(skia_chrome_utils)', 206 'skia_chrome_utils%': '<(skia_chrome_utils)',
206 'skia_directwrite%': '<(skia_directwrite)', 207 'skia_directwrite%': '<(skia_directwrite)',
207 'skia_gpu%': '<(skia_gpu)', 208 'skia_gpu%': '<(skia_gpu)',
208 'skia_win_exceptions%': 0, 209 'skia_win_exceptions%': 0,
209 'skia_osx_deployment_target%': '<(skia_osx_deployment_target)', 210 'skia_osx_deployment_target%': '<(skia_osx_deployment_target)',
210 'skia_profile_enabled%': '<(skia_profile_enabled)', 211 'skia_profile_enabled%': '<(skia_profile_enabled)',
211 'skia_shared_lib%': '<(skia_shared_lib)', 212 'skia_shared_lib%': '<(skia_shared_lib)',
212 'skia_opencl%': '<(skia_opencl)', 213 'skia_opencl%': '<(skia_opencl)',
214 'skia_force_distancefield_fonts%': '<(skia_force_distancefield_fonts)',
213 'skia_static_initializers%': '<(skia_static_initializers)', 215 'skia_static_initializers%': '<(skia_static_initializers)',
214 'ios_sdk_version%': '6.0', 216 'ios_sdk_version%': '6.0',
215 'skia_win_debuggers_path%': '<(skia_win_debuggers_path)', 217 'skia_win_debuggers_path%': '<(skia_win_debuggers_path)',
216 'skia_run_pdfviewer_in_gm%': 0, 218 'skia_run_pdfviewer_in_gm%': 0,
217 'skia_disable_inlining%': 0, 219 'skia_disable_inlining%': 0,
218 220
219 # These are referenced by our .gypi files that list files (e.g. core.gypi) 221 # These are referenced by our .gypi files that list files (e.g. core.gypi)
220 # 222 #
221 'skia_src_path%': '../src', 223 'skia_src_path%': '../src',
222 'skia_include_path%': '../include', 224 'skia_include_path%': '../include',
223 }, 225 },
224 } 226 }
OLDNEW
« no previous file with comments | « gyp/common_conditions.gypi ('k') | src/gpu/GrDistanceFieldTextContext.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698