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

Unified Diff: webrtc/sdk/BUILD.gn

Issue 2372513004: Remove Crit::Scope lock by using atomic bool property (Closed)
Patch Set: Replace nonatomic with atomic property. - It's not on performance critical path and we expect upda… Created 4 years, 3 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/sdk/BUILD.gn
diff --git a/webrtc/sdk/BUILD.gn b/webrtc/sdk/BUILD.gn
index 96d8ef7a06d4eefda4c426f36a4b6def35fb89c3..10e79203628d82936e1f047551c99044e8415bc9 100644
--- a/webrtc/sdk/BUILD.gn
+++ b/webrtc/sdk/BUILD.gn
@@ -68,15 +68,6 @@ if (is_ios || (is_mac && mac_deployment_target == "10.7")) {
}
}
- config("rtc_sdk_peerconnection_objc_warnings_config") {
- if (is_clang) {
- # TODO(tkchin): Make rtc_sdk_peerconnection_objc compile with the standard
- # set of warnings.
- # See https://bugs.chromium.org/p/webrtc/issues/detail?id=6308
- cflags = [ "-Wno-thread-safety-analysis" ]
- }
- }
-
rtc_static_library("rtc_sdk_peerconnection_objc") {
sources = [
"objc/Framework/Classes/RTCAVFoundationVideoSource+Private.h",
@@ -194,7 +185,6 @@ if (is_ios || (is_mac && mac_deployment_target == "10.7")) {
}
configs += [
- ":rtc_sdk_peerconnection_objc_warnings_config",
"..:common_objc",
"//build/config/compiler:enable_arc",
]

Powered by Google App Engine
This is Rietveld 408576698