1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/media/webrtc/trunk/supplement/supplement.gypi Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,30 @@ 1.4 +# This file will be picked up by gyp to initialize some global settings. 1.5 +{ 1.6 + 'variables': { 1.7 +# make sure we can override this with --include 1.8 + 'build_with_chromium%': 1, 1.9 + 'clang_use_chrome_plugins%': 0, 1.10 + 'enable_protobuf%': 1, 1.11 + 'enabled_libjingle_device_manager%': 1, 1.12 + 'include_internal_audio_device%': 1, 1.13 + 'include_internal_video_capture%': 1, 1.14 + 'include_internal_video_render%': 1, 1.15 + 'include_pulse_audio%': 1, 1.16 + 'use_openssl%': 1, 1.17 + }, 1.18 + 'target_defaults': { 1.19 + 'conditions': [ 1.20 + ['OS=="linux" and clang==1', { 1.21 + 'cflags': [ 1.22 + # Suppress the warning caused by 1.23 + # LateBindingSymbolTable::TableInfo from 1.24 + # latebindingsymboltable.cc.def. 1.25 + '-Wno-address-of-array-temporary', 1.26 + ], 1.27 + 'cflags_mozilla': [ 1.28 + '-Wno-address-of-array-temporary', 1.29 + ], 1.30 + }], 1.31 + ], 1.32 + }, # target_defaults 1.33 +}