| 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 124 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 135 | 135 |
| 136 # Enable this to use HW H.264 encoder/decoder on iOS/Mac PeerConnections. | 136 # Enable this to use HW H.264 encoder/decoder on iOS/Mac PeerConnections. |
| 137 # Enabling this may break interop with Android clients that support H264. | 137 # Enabling this may break interop with Android clients that support H264. |
| 138 'use_objc_h264%': 0, | 138 'use_objc_h264%': 0, |
| 139 | 139 |
| 140 # Enable this to build OpenH264 encoder/FFmpeg decoder. This is supported on | 140 # Enable this to build OpenH264 encoder/FFmpeg decoder. This is supported on |
| 141 # all platforms except iOS. Because FFmpeg can be built with/without H.264 | 141 # all platforms except iOS. Because FFmpeg can be built with/without H.264 |
| 142 # support, |ffmpeg_branding| has to separately be set to a value that | 142 # support, |ffmpeg_branding| has to separately be set to a value that |
| 143 # includes H.264, for example "Chrome". If FFmpeg is built without H.264, | 143 # includes H.264, for example "Chrome". If FFmpeg is built without H.264, |
| 144 # compilation succeeds but |H264DecoderImpl| fails to initialize. | 144 # compilation succeeds but |H264DecoderImpl| fails to initialize. |
| 145 # See also: |rtc_initialize_ffmpeg|. |
| 145 # CHECK THE OPENH264, FFMPEG AND H.264 LICENSES/PATENTS BEFORE BUILDING. | 146 # CHECK THE OPENH264, FFMPEG AND H.264 LICENSES/PATENTS BEFORE BUILDING. |
| 146 # http://www.openh264.org, https://www.ffmpeg.org/ | 147 # http://www.openh264.org, https://www.ffmpeg.org/ |
| 147 'rtc_use_h264%': 0, | 148 'rtc_use_h264%': 0, |
| 148 | 149 |
| 149 'conditions': [ | 150 'conditions': [ |
| 151 # FFmpeg must be initialized for |H264DecoderImpl| to work. This can be |
| 152 # done by WebRTC during |H264DecoderImpl::InitDecode| or externally. |
| 153 # FFmpeg must only be initialized once. Projects that initialize FFmpeg |
| 154 # externally, such as Chromium, must turn this flag off so that WebRTC |
| 155 # does not also initialize. |
| 156 ['build_with_chromium==0', { |
| 157 'rtc_initialize_ffmpeg%': 1, |
| 158 }, { |
| 159 'rtc_initialize_ffmpeg%': 0, |
| 160 }], |
| 161 |
| 150 ['build_with_chromium==1', { | 162 ['build_with_chromium==1', { |
| 151 # Exclude pulse audio on Chromium since its prerequisites don't require | 163 # Exclude pulse audio on Chromium since its prerequisites don't require |
| 152 # pulse audio. | 164 # pulse audio. |
| 153 'include_pulse_audio%': 0, | 165 'include_pulse_audio%': 0, |
| 154 | 166 |
| 155 # Exclude internal ADM since Chromium uses its own IO handling. | 167 # Exclude internal ADM since Chromium uses its own IO handling. |
| 156 'include_internal_audio_device%': 0, | 168 'include_internal_audio_device%': 0, |
| 157 | 169 |
| 158 # Remove tests for Chromium to avoid slowing down GYP generation. | 170 # Remove tests for Chromium to avoid slowing down GYP generation. |
| 159 'include_tests%': 0, | 171 'include_tests%': 0, |
| (...skipping 302 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 462 # of a more specific macro. | 474 # of a more specific macro. |
| 463 'defines': [ | 475 'defines': [ |
| 464 'WEBRTC_POSIX', | 476 'WEBRTC_POSIX', |
| 465 ], | 477 ], |
| 466 }], | 478 }], |
| 467 ], | 479 ], |
| 468 }, | 480 }, |
| 469 }, # target_defaults | 481 }, # target_defaults |
| 470 } | 482 } |
| 471 | 483 |
| OLD | NEW |