| OLD | NEW |
| 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 Loading... |
| 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 Loading... |
| 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: |
| OLD | NEW |