Chromium Code Reviews| 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", |
| + ] |
| + } |
| } |
| } |