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

Side by Side Diff: gyp/common_conditions.gypi

Issue 24644003: Add skia_tsan_build to match skia_asan_build and fix one example race. (Closed) Base URL: http://skia.googlecode.com/svn/trunk/
Patch Set: Created 7 years, 2 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 | Annotate | Revision Log
« no previous file with comments | « no previous file | gyp/common_variables.gypi » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # conditions used in both common.gypi and skia.gyp in chromium 1 # conditions used in both common.gypi and skia.gyp in chromium
2 # 2 #
3 { 3 {
4 'defines': [ 4 'defines': [
5 'SK_ALLOW_STATIC_GLOBAL_INITIALIZERS=<(skia_static_initializers)', 5 'SK_ALLOW_STATIC_GLOBAL_INITIALIZERS=<(skia_static_initializers)',
6 ], 6 ],
7 'conditions' : [ 7 'conditions' : [
8 [ 'skia_gpu == 1', 8 [ 'skia_gpu == 1',
9 { 9 {
10 'defines': [ 10 'defines': [
(...skipping 268 matching lines...) Expand 10 before | Expand all | Expand 10 after
279 }], 279 }],
280 [ 'skia_asan_build', { 280 [ 'skia_asan_build', {
281 'cflags': [ 281 'cflags': [
282 '-fsanitize=address', 282 '-fsanitize=address',
283 '-fno-omit-frame-pointer', 283 '-fno-omit-frame-pointer',
284 ], 284 ],
285 'ldflags': [ 285 'ldflags': [
286 '-fsanitize=address', 286 '-fsanitize=address',
287 ], 287 ],
288 }], 288 }],
289 [ 'skia_tsan_build', {
290 'cflags': [
291 '-fsanitize=thread',
292 '-fno-omit-frame-pointer',
293 ],
294 'ldflags': [
295 '-fsanitize=thread',
296 ],
297 }],
289 [ 'skia_clang_build', { 298 [ 'skia_clang_build', {
290 'cflags': [ 299 'cflags': [
291 '-Wstring-conversion', 300 '-Wstring-conversion',
292 ], 301 ],
293 }], 302 }],
294 ], 303 ],
295 }, 304 },
296 ], 305 ],
297 306
298 [ 'skia_os == "mac"', 307 [ 'skia_os == "mac"',
(...skipping 187 matching lines...) Expand 10 before | Expand all | Expand 10 after
486 'xcode_settings': { 495 'xcode_settings': {
487 'SYMROOT': '<(DEPTH)/xcodebuild', 496 'SYMROOT': '<(DEPTH)/xcodebuild',
488 }, 497 },
489 } 498 }
490 499
491 # Local Variables: 500 # Local Variables:
492 # tab-width:2 501 # tab-width:2
493 # indent-tabs-mode:nil 502 # indent-tabs-mode:nil
494 # End: 503 # End:
495 # vim: set expandtab tabstop=2 shiftwidth=2: 504 # vim: set expandtab tabstop=2 shiftwidth=2:
OLDNEW
« no previous file with comments | « no previous file | gyp/common_variables.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698