-
Notifications
You must be signed in to change notification settings - Fork 76
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update build.sh for repeatable builds of libwebrtc-magic.a (#51)
Modify build.sh to perform a mostly self contained build of webrtc at the tested commit id. Some pre-requisites must be installed before or after a missing tool failure is encountered, e.g. pkg-config on mac or webrtc/src/build/install-build-deps.sh on linux. Tested: linux and mac builds worked from clean virtual machines. Demos and tests passed.
- Loading branch information
1 parent
1cb2606
commit 3620917
Showing
2 changed files
with
94 additions
and
20 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
From dd503bd0c5696882d6ece760da1ef4865825e55c Mon Sep 17 00:00:00 2001 | ||
From: Cant Stop The Signal <cantstopthesignals@gmail.com> | ||
Date: Sun, 4 Dec 2016 16:01:43 -0800 | ||
Subject: [PATCH] Add patches to get webrtc to build from webrtc | ||
branch-heads/52 | ||
|
||
webrtc commit f33698296719f956497d2dbff81b5080864a8804 | ||
--- | ||
webrtc/api/api.gyp | 3 +++ | ||
1 file changed, 3 insertions(+) | ||
|
||
diff --git a/webrtc/api/api.gyp b/webrtc/api/api.gyp | ||
index 377ef8f70..794fdb99c 100644 | ||
--- a/webrtc/api/api.gyp | ||
+++ b/webrtc/api/api.gyp | ||
@@ -129,6 +129,7 @@ | ||
'dependencies': [ | ||
'<(webrtc_root)/media/media.gyp:rtc_media', | ||
'<(webrtc_root)/pc/pc.gyp:rtc_pc', | ||
+ '<(webrtc_root)/system_wrappers/system_wrappers.gyp:field_trial_default', | ||
], | ||
'sources': [ | ||
'audiotrack.cc', | ||
@@ -199,6 +200,8 @@ | ||
'webrtcsession.h', | ||
'webrtcsessiondescriptionfactory.cc', | ||
'webrtcsessiondescriptionfactory.h', | ||
+ 'test/fakeaudiocapturemodule.cc', | ||
+ 'test/fakeaudiocapturemodule.h', | ||
], | ||
# TODO(kjellander): Make the code compile without disabling these flags. | ||
# See https://bugs.chromium.org/p/webrtc/issues/detail?id=3307 | ||
-- | ||
2.11.0 | ||
|