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

Unified Diff: webrtc/modules/audio_coding/BUILD.gn

Issue 1267683002: Hooked up RtcEventLog. It lives in Voice Engine and pointers are propagated to ACM and Call. (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Rebased to latest revision of webrtc to resolve patching conflict on try bots. Created 5 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
Index: webrtc/modules/audio_coding/BUILD.gn
diff --git a/webrtc/modules/audio_coding/BUILD.gn b/webrtc/modules/audio_coding/BUILD.gn
index 8a27900edf8bf05db90d64a262a3885f177bcd62..e4ceddb3e0469d7b896a1189d71e0e845c4176a0 100644
--- a/webrtc/modules/audio_coding/BUILD.gn
+++ b/webrtc/modules/audio_coding/BUILD.gn
@@ -58,6 +58,12 @@ source_set("audio_coding") {
]
}
+ if (is_clang) {
+ # Suppress warnings from Chrome's Clang plugins.
hlundin-webrtc 2015/08/04 09:14:47 Please, file a new bug about this specific suppres
ivoc 2015/08/05 07:39:03 Done, issue URL: https://code.google.com/p/webrtc/
+ # See http://code.google.com/p/webrtc/issues/detail?id=163 for details.
+ configs -= [ "//build/config/clang:find_bad_constructs" ]
+ }
+
deps = [
":cng",
":g711",
@@ -68,6 +74,7 @@ source_set("audio_coding") {
":neteq",
":pcm16b",
":red",
+ "../..:rtc_event_log",
"../..:webrtc_common",
"../../common_audio",
"../../system_wrappers",

Powered by Google App Engine
This is Rietveld 408576698