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

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

Issue 3001673002: Roll chromium_revision f156b499f7..f439921f66 (493756:494089) (Closed)
Patch Set: Suppress Wthread-safety-attributes. Created 3 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') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webrtc/modules/video_coding/BUILD.gn
diff --git a/webrtc/modules/video_coding/BUILD.gn b/webrtc/modules/video_coding/BUILD.gn
index 193066167b59a602dfc1b164bd37e9fbbfa42747..52d0327bfba55cc3a6c74bfa5db44df817119bb9 100644
--- a/webrtc/modules/video_coding/BUILD.gn
+++ b/webrtc/modules/video_coding/BUILD.gn
@@ -146,6 +146,11 @@ rtc_static_library("video_coding_utility") {
]
}
+# TODO(ehmaldonado): Remove once http://bugs.webrtc.org/8090 is fixed.
+config("webrtc_h264_config") {
+ cflags = [ "-Wno-thread-safety-attributes" ]
+}
+
rtc_static_library("webrtc_h264") {
sources = [
"codecs/h264/h264.cc",
@@ -166,6 +171,7 @@ rtc_static_library("webrtc_h264") {
]
if (rtc_use_h264) {
+ configs += [ ":webrtc_h264_config" ]
defines += [ "WEBRTC_USE_H264" ]
if (rtc_initialize_ffmpeg) {
defines += [ "WEBRTC_INITIALIZE_FFMPEG" ]
« no previous file with comments | « DEPS ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698