Moved LSan suppressions from tools/lsan/suppressions.txt to compiled-in
suppressions similar to the Chromium changes in
https://codereview.chromium.org/924923002
I will remove tools/lsan after committing this and the bots are updated to
not specify it.
Other relevant changes:
* src/buildtools: da0df3f..5c5e924
* src/third_party/android_tools: f6e2370..fd5a8ec
* src/third_party/boringssl/src: 8f5e2eb..d306f16
* src/third_party/openmax_dl: 81318c1..21c8abe
Details: 601e6f3..b0c3ed3/DEPS
Clang version was not updated in this roll.
R=glider@chromium.org, henrika@webrtc.org, pbos@webrtc.org
Review URL: https://webrtc-codereview.appspot.com/37299004
Cr-Commit-Position: refs/heads/master@{#8406}
git-svn-id: http://webrtc.googlecode.com/svn/trunk@8406 4adac7df-926f-26a2-2b94-8c16560cd09d
36 lines
963 B
Python
36 lines
963 B
Python
{
|
|
'variables': {
|
|
'variables': {
|
|
'webrtc_root%': '<(DEPTH)/webrtc',
|
|
},
|
|
'webrtc_root%': '<(webrtc_root)',
|
|
'build_with_chromium': 0,
|
|
},
|
|
'target_defaults': {
|
|
'target_conditions': [
|
|
['_target_name=="sanitizer_options"', {
|
|
'conditions': [
|
|
['lsan==1', {
|
|
# Replace Chromium's LSan suppressions with our own for WebRTC.
|
|
'sources/': [
|
|
['exclude', 'lsan_suppressions.cc'],
|
|
],
|
|
'sources': [
|
|
'<(webrtc_root)/build/sanitizers/lsan_suppressions_webrtc.cc',
|
|
],
|
|
}],
|
|
['tsan==1', {
|
|
# Replace Chromium's TSan v2 suppressions with our own for WebRTC.
|
|
'sources/': [
|
|
['exclude', 'tsan_suppressions.cc'],
|
|
],
|
|
'sources': [
|
|
'<(webrtc_root)/build/sanitizers/tsan_suppressions_webrtc.cc',
|
|
],
|
|
}],
|
|
],
|
|
}],
|
|
],
|
|
},
|
|
}
|