summaryrefslogtreecommitdiff
path: root/supplement.gypi
blob: 4bf859873dd600f3a712431115d23a938fcdf9b2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
{
  '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',
            ],
          }],
        ],
      }],
    ],
  },
}