Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(58)

Unified Diff: content/BUILD.gn

Issue 429113002: Webrtc deps roll. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Use webrtc version 6825 and rebase and switch back to original workspace. Created 6 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « DEPS ('k') | content/browser/renderer_host/p2p/socket_dispatcher_host.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/BUILD.gn
diff --git a/content/BUILD.gn b/content/BUILD.gn
index a49a8873ad564258df5c302c5cb55bc14b55559c..a2bd4894665dbe6e4c30b90add022643a3482265 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" ]
« no previous file with comments | « DEPS ('k') | content/browser/renderer_host/p2p/socket_dispatcher_host.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698