diff options
author | Matt A. Tobin <mattatobin@localhost.localdomain> | 2018-02-02 04:16:08 -0500 |
---|---|---|
committer | Matt A. Tobin <mattatobin@localhost.localdomain> | 2018-02-02 04:16:08 -0500 |
commit | 5f8de423f190bbb79a62f804151bc24824fa32d8 (patch) | |
tree | 10027f336435511475e392454359edea8e25895d /media/webrtc/trunk/supplement | |
parent | 49ee0794b5d912db1f95dce6eb52d781dc210db5 (diff) | |
download | UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar.gz UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar.lz UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar.xz UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.zip |
Add m-esr52 at 52.6.0
Diffstat (limited to 'media/webrtc/trunk/supplement')
-rw-r--r-- | media/webrtc/trunk/supplement/supplement.gypi | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/media/webrtc/trunk/supplement/supplement.gypi b/media/webrtc/trunk/supplement/supplement.gypi new file mode 100644 index 000000000..6c997ee7d --- /dev/null +++ b/media/webrtc/trunk/supplement/supplement.gypi @@ -0,0 +1,30 @@ +# This file will be picked up by gyp to initialize some global settings. +{ + 'variables': { +# make sure we can override this with --include + 'build_with_chromium%': 1, + 'clang_use_chrome_plugins%': 0, + 'enable_protobuf%': 1, + 'enabled_libjingle_device_manager%': 1, + 'include_internal_audio_device%': 1, + 'include_internal_video_capture%': 1, + 'include_internal_video_render%': 1, + 'include_pulse_audio%': 1, + 'use_openssl%': 1, + }, + 'target_defaults': { + 'conditions': [ + ['OS=="linux" and clang==1', { + 'cflags': [ + # Suppress the warning caused by + # LateBindingSymbolTable::TableInfo from + # latebindingsymboltable.cc.def. + '-Wno-address-of-array-temporary', + ], + 'cflags_mozilla': [ + '-Wno-address-of-array-temporary', + ], + }], + ], + }, # target_defaults +} |