| OLD | NEW |
| 1 # Copyright (c) 2012 The WebRTC project authors. All Rights Reserved. | 1 # Copyright (c) 2012 The WebRTC project authors. All Rights Reserved. |
| 2 # | 2 # |
| 3 # Use of this source code is governed by a BSD-style license | 3 # Use of this source code is governed by a BSD-style license |
| 4 # that can be found in the LICENSE file in the root of the source | 4 # that can be found in the LICENSE file in the root of the source |
| 5 # tree. An additional intellectual property rights grant can be found | 5 # tree. An additional intellectual property rights grant can be found |
| 6 # in the file PATENTS. All contributing project authors may | 6 # in the file PATENTS. All contributing project authors may |
| 7 # be found in the AUTHORS file in the root of the source tree. | 7 # be found in the AUTHORS file in the root of the source tree. |
| 8 | 8 |
| 9 # This file contains common settings for building WebRTC components. | 9 # This file contains common settings for building WebRTC components. |
| 10 | 10 |
| (...skipping 155 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 166 | 166 |
| 167 # Enable this to prevent extern symbols from being hidden on iOS builds. | 167 # Enable this to prevent extern symbols from being hidden on iOS builds. |
| 168 # The chromium settings we inherit hide symbols by default on Release | 168 # The chromium settings we inherit hide symbols by default on Release |
| 169 # builds. We want our symbols to be visible when distributing WebRTC via | 169 # builds. We want our symbols to be visible when distributing WebRTC via |
| 170 # static libraries to avoid linker warnings. | 170 # static libraries to avoid linker warnings. |
| 171 'ios_override_visibility%': 0, | 171 'ios_override_visibility%': 0, |
| 172 | 172 |
| 173 # Determines whether QUIC code will be built. | 173 # Determines whether QUIC code will be built. |
| 174 'use_quic%': 0, | 174 'use_quic%': 0, |
| 175 | 175 |
| 176 # By default, use normal platform audio support or dummy audio, but don't |
| 177 # use file-based audio playout and record. |
| 178 'use_dummy_audio_file_devices%': 0, |
| 179 |
| 176 'conditions': [ | 180 'conditions': [ |
| 177 # Enable this to build OpenH264 encoder/FFmpeg decoder. This is supported | 181 # Enable this to build OpenH264 encoder/FFmpeg decoder. This is supported |
| 178 # on all platforms except Android and iOS. Because FFmpeg can be built | 182 # on all platforms except Android and iOS. Because FFmpeg can be built |
| 179 # with/without H.264 support, |ffmpeg_branding| has to separately be set | 183 # with/without H.264 support, |ffmpeg_branding| has to separately be set |
| 180 # to a value that includes H.264, for example "Chrome". If FFmpeg is built | 184 # to a value that includes H.264, for example "Chrome". If FFmpeg is built |
| 181 # without H.264, compilation succeeds but |H264DecoderImpl| fails to | 185 # without H.264, compilation succeeds but |H264DecoderImpl| fails to |
| 182 # initialize. See also: |rtc_initialize_ffmpeg|. | 186 # initialize. See also: |rtc_initialize_ffmpeg|. |
| 183 # CHECK THE OPENH264, FFMPEG AND H.264 LICENSES/PATENTS BEFORE BUILDING. | 187 # CHECK THE OPENH264, FFMPEG AND H.264 LICENSES/PATENTS BEFORE BUILDING. |
| 184 # http://www.openh264.org, https://www.ffmpeg.org/ | 188 # http://www.openh264.org, https://www.ffmpeg.org/ |
| 185 ['proprietary_codecs==1 and OS!="android" and OS!="ios"', { | 189 ['proprietary_codecs==1 and OS!="android" and OS!="ios"', { |
| (...skipping 412 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 598 }], | 602 }], |
| 599 ['OS=="freebsd"', { | 603 ['OS=="freebsd"', { |
| 600 'defines': [ | 604 'defines': [ |
| 601 'FREEBSD', | 605 'FREEBSD', |
| 602 ], | 606 ], |
| 603 }], | 607 }], |
| 604 ], | 608 ], |
| 605 }, | 609 }, |
| 606 }, # target_defaults | 610 }, # target_defaults |
| 607 } | 611 } |
| OLD | NEW |