Bug 694817: Turn off webrtc's internal video renderer and protobuf (take 2) r=ted

This commit is contained in:
Randell Jesup 2012-07-23 22:35:35 -04:00
parent ac41818e21
commit 5588af7472

View File

@ -65,9 +65,22 @@
'webrtc_root%': '<(DEPTH)/third_party/webrtc',
}, {
'conditions': [
['build_with_mozilla==1', {
# Settings for the Mozilla build.
'include_pulse_audio%': 0,
# we use the internal capture code for getUserMedia()
'include_internal_audio_device%': 1,
'include_internal_video_capture%': 1,
'include_internal_video_render%': 0,
'enable_protobuf%': 0,
'webrtc_root%': '<(DEPTH)/src',
'clang_use_chrome_plugins%': 0,
}, {
# Settings for the standalone (not-in-Chromium) build.
'include_pulse_audio%': 0,
'include_pulse_audio%': 1,
'include_internal_audio_device%': 1,
@ -88,6 +101,8 @@
'clang_use_chrome_plugins%': 0,
}],
],
}],
],
}],
], # conditions
},