c23923447c
To pick up recent fixes after the Chromium Git switch. Relevant changes pulled in by this roll: * r291168 refactor sanitizer_options (we can now remove some hacks) * r291647 roll of nss.gyp (its paths work with how we build for iOS). BUG=2863,3731 R=iannucci@chromium.org, tommi@webrtc.org Review URL: https://webrtc-codereview.appspot.com/22489004 git-svn-id: http://webrtc.googlecode.com/svn/trunk@6967 4adac7df-926f-26a2-2b94-8c16560cd09d
27 lines
629 B
Python
27 lines
629 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': [
|
|
['tsan==1', {
|
|
# Replace Chromium's TSan v2 suppressions with our own for WebRTC.
|
|
'sources/': [
|
|
['exclude', 'tsan_suppressions.cc'],
|
|
],
|
|
'sources': [
|
|
'<(webrtc_root)/build/tsan_suppressions_webrtc.cc',
|
|
],
|
|
}],
|
|
],
|
|
}],
|
|
],
|
|
},
|
|
}
|