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

Side by Side Diff: gyp/common_variables.gypi

Issue 1509733003: Disable sanitizers with a blacklist. (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: put yasm stuff back Created 5 years 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') | gyp/sfntly.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 184 matching lines...) Expand 10 before | Expand all | Expand 10 after
195 'arm_neon_optional%': 0, 195 'arm_neon_optional%': 0,
196 'mips_arch_variant%': 'mips32', 196 'mips_arch_variant%': 'mips32',
197 'mips_dsp%': 0, 197 'mips_dsp%': 0,
198 'skia_os%': '<(skia_os)', 198 'skia_os%': '<(skia_os)',
199 'os_posix%': '<(os_posix)', 199 'os_posix%': '<(os_posix)',
200 200
201 'skia_freetype_static%': '<(skia_freetype_static)', 201 'skia_freetype_static%': '<(skia_freetype_static)',
202 'skia_no_fontconfig%': '<(skia_no_fontconfig)', 202 'skia_no_fontconfig%': '<(skia_no_fontconfig)',
203 'skia_embedded_fonts%': '<(skia_embedded_fonts)', 203 'skia_embedded_fonts%': '<(skia_embedded_fonts)',
204 'skia_sanitizer%': '<(skia_sanitizer)', 204 'skia_sanitizer%': '<(skia_sanitizer)',
205 'skia_sanitizer_blacklist%':
206 '<!(python -c "import sys; import os; print os.path.abspath(sys.argv[1])" ../tools/xsan.blacklist)',
205 'skia_mesa%': '<(skia_mesa)', 207 'skia_mesa%': '<(skia_mesa)',
206 'skia_gpu_extra_dependency_path%': '<(skia_gpu_extra_dependency_path)', 208 'skia_gpu_extra_dependency_path%': '<(skia_gpu_extra_dependency_path)',
207 'skia_gpu_extra_tests_path%': '<(skia_gpu_extra_tests_path)', 209 'skia_gpu_extra_tests_path%': '<(skia_gpu_extra_tests_path)',
208 'skia_stroke_path_rendering%': '<(skia_stroke_path_rendering)', 210 'skia_stroke_path_rendering%': '<(skia_stroke_path_rendering)',
209 'skia_android_framework%': '<(skia_android_framework)', 211 'skia_android_framework%': '<(skia_android_framework)',
210 'skia_use_android_framework_defines%': '<(skia_use_android_framework_defines )', 212 'skia_use_android_framework_defines%': '<(skia_use_android_framework_defines )',
211 'skia_use_system_json%': '<(skia_use_system_json)', 213 'skia_use_system_json%': '<(skia_use_system_json)',
212 'skia_android_path_rendering%': '<(skia_android_path_rendering)', 214 'skia_android_path_rendering%': '<(skia_android_path_rendering)',
213 'skia_resource_cache_mb_limit%': '<(skia_resource_cache_mb_limit)', 215 'skia_resource_cache_mb_limit%': '<(skia_resource_cache_mb_limit)',
214 'skia_resource_cache_count_limit%': '<(skia_resource_cache_count_limit)', 216 'skia_resource_cache_count_limit%': '<(skia_resource_cache_count_limit)',
(...skipping 29 matching lines...) Expand all
244 '-ffast-math', # Optimize float math even when it breaks IEEE compliance. 246 '-ffast-math', # Optimize float math even when it breaks IEEE compliance.
245 #'-flto' # Enable link-time optimization. 247 #'-flto' # Enable link-time optimization.
246 ], 248 ],
247 249
248 # These are referenced by our .gypi files that list files (e.g. core.gypi) 250 # These are referenced by our .gypi files that list files (e.g. core.gypi)
249 # 251 #
250 'skia_src_path%': '../src', 252 'skia_src_path%': '../src',
251 'skia_include_path%': '../include', 253 'skia_include_path%': '../include',
252 }, 254 },
253 } 255 }
OLDNEW
« no previous file with comments | « gyp/common_conditions.gypi ('k') | gyp/sfntly.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698