Remove warning suppression from VideoToolboxEncoder

This warning no longer needs to be supressed as the issue
has been fixed.

BUG=webrtc:6307
TBR=tkchin@webrtc.org

Review-Url: https://codereview.webrtc.org/2537293003
Cr-Commit-Position: refs/heads/master@{#15331}
This commit is contained in:
kthelgason 2016-11-30 05:31:01 -08:00 committed by Commit bot
parent 076c0118c5
commit 18f7c8d4df

View File

@ -30,14 +30,6 @@ if (is_ios || is_mac) {
"objc/Framework/Headers",
]
}
config("webrtc_h264_video_toolbox_warnings_config") {
if (is_clang) {
# TODO(tkchin): Make webrtc_h264_video_toolbox compile with the standard set
# of warnings.
# See https://bugs.chromium.org/p/webrtc/issues/detail?id=6307
cflags = [ "-Wno-thread-safety-analysis" ]
}
}
rtc_static_library("rtc_sdk_common_objc") {
deps = [
@ -385,7 +377,6 @@ if (is_ios || is_mac) {
]
configs += [
":webrtc_h264_video_toolbox_warnings_config",
"//webrtc:common_objc",
"//build/config/compiler:enable_arc",
]