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

Unified Diff: webrtc/call/BUILD.gn

Issue 2454373002: Added an empty AudioTransportProxy to AudioState. (Closed)
Patch Set: Created 4 years, 1 month 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
Index: webrtc/call/BUILD.gn
diff --git a/webrtc/call/BUILD.gn b/webrtc/call/BUILD.gn
index 8ea5d0512e05d1cf4eb4b9845ea72d1f5e7f3fd2..3274502321477854d8b87db0803c6570dcfa22dc 100644
--- a/webrtc/call/BUILD.gn
+++ b/webrtc/call/BUILD.gn
@@ -23,9 +23,12 @@ rtc_static_library("call") {
suppressed_configs += [ "//build/config/clang:find_bad_constructs" ]
}
aleloi 2016/11/01 15:53:34 Small unrelated change. Quote from "gn help public
+ public_deps = [
+ "../api:call_api",
+ ]
+
deps = [
"..:webrtc_common",
- "../api:call_api",
"../audio",
"../base:rtc_task_queue",
"../logging:rtc_event_log_impl",
@@ -55,5 +58,13 @@ if (rtc_include_tests) {
# Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163).
suppressed_configs += [ "//build/config/clang:find_bad_constructs" ]
}
+ if (is_win) {
+ cflags = [
+ # TODO(phoglund): get rid of 4373 supression when
+ # http://code.google.com/p/webrtc/issues/detail?id=261 is solved.
+ # legacy warning for ignoring const / volatile in signatures.
+ "/wd4373",
+ ]
+ }
}
}

Powered by Google App Engine
This is Rietveld 408576698