summaryrefslogtreecommitdiffstats
path: root/content/BUILD.gn
diff options
context:
space:
mode:
authorronghuawu@chromium.org <ronghuawu@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2014-07-31 22:19:46 +0000
committerronghuawu@chromium.org <ronghuawu@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2014-07-31 22:19:46 +0000
commitbf45dff0ca703e5ad3bb6c6754ebdcb0c1b1296a (patch)
treec8f5b0600665f3597d8c036411f565b6ba79515e /content/BUILD.gn
parent00e1d2773de880b96aff7e2d33b2b0914778901f (diff)
downloadchromium_src-bf45dff0ca703e5ad3bb6c6754ebdcb0c1b1296a.zip
chromium_src-bf45dff0ca703e5ad3bb6c6754ebdcb0c1b1296a.tar.gz
chromium_src-bf45dff0ca703e5ad3bb6c6754ebdcb0c1b1296a.tar.bz2
Update webrtc&libjingle 6774:6799.
BUG=N/A R=hellner@chromium.org TBR=darin@chromium.org, hclam@chromium.org, jochen@chromium.org, palmer@chromium.org, sergeyu@chromium.org, wez@chromium.org Commit on behalf of hellner@. Original CL tried and approved in https://codereview.chromium.org/429113002/ Review URL: https://codereview.chromium.org/429253003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@286902 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'content/BUILD.gn')
-rw-r--r--content/BUILD.gn9
1 files changed, 5 insertions, 4 deletions
diff --git a/content/BUILD.gn b/content/BUILD.gn
index a49a887..a2bd489 100644
--- a/content/BUILD.gn
+++ b/content/BUILD.gn
@@ -81,17 +81,18 @@ config("libjingle_stub_config") {
]
if (is_mac) {
- defines += [ "OSX" ]
+ defines += [ "OSX", "WEBRTC_MAC" ]
} else if (is_linux) {
- defines += [ "LINUX" ]
+ defines += [ "LINUX", "WEBRTC_LINUX" ]
} else if (is_android) {
- defines += [ "ANDROID" ]
+ defines += [ "ANDROID", "WEBRTC_LINUX", "WEBRTC_ANDROID" ]
} else if (is_win) {
libs = [ "secur32.lib", "crypt32.lib", "iphlpapi.lib" ]
+ defines += [ "WEBRTC_WIN" ]
}
if (is_posix) {
- defines += [ "POSIX" ]
+ defines += [ "POSIX", "WEBRTC_POSIX" ]
}
if (is_chromeos) {
defines += [ "CHROMEOS" ]