| Index: webrtc/build/common.gypi
|
| diff --git a/webrtc/build/common.gypi b/webrtc/build/common.gypi
|
| index 4c2522e483749d84a1908ad227342650c7107d22..1e5f1cb1ac52ba1c1904307334b2b99c983d42b9 100644
|
| --- a/webrtc/build/common.gypi
|
| +++ b/webrtc/build/common.gypi
|
| @@ -125,9 +125,13 @@
|
| 'build_with_neon%': 0,
|
|
|
| # Enable this to use HW H.264 encoder/decoder on iOS/Mac PeerConnections.
|
| - # Enabling this may break interop with Android clients that support H264.
|
| + # Enabling this may break interop with Android clients that support H.264.
|
| 'use_objc_h264%': 0,
|
|
|
| + # Enable this to build OpenH264 SW H.264 encoder/decoder.
|
| + # CHECK THE OPENH264 LICENSE BEFORE BUILDING.
|
| + 'use_openh264%': 0,
|
| +
|
| 'conditions': [
|
| ['build_with_chromium==1', {
|
| # Exclude pulse audio on Chromium since its prerequisites don't require
|
| @@ -342,6 +346,11 @@
|
| 'WEBRTC_OBJC_H264',
|
| ],
|
| }],
|
| + ['use_openh264==1', {
|
| + 'defines': [
|
| + 'WEBRTC_OPENH264',
|
| + ],
|
| + }],
|
| ['OS=="linux"', {
|
| 'defines': [
|
| 'WEBRTC_LINUX',
|
|
|