| OLD | NEW |
| 1 # Copyright (c) 2014 The WebRTC project authors. All Rights Reserved. | 1 # Copyright (c) 2014 The WebRTC project authors. All Rights Reserved. |
| 2 # | 2 # |
| 3 # Use of this source code is governed by a BSD-style license | 3 # Use of this source code is governed by a BSD-style license |
| 4 # that can be found in the LICENSE file in the root of the source | 4 # that can be found in the LICENSE file in the root of the source |
| 5 # tree. An additional intellectual property rights grant can be found | 5 # tree. An additional intellectual property rights grant can be found |
| 6 # in the file PATENTS. All contributing project authors may | 6 # in the file PATENTS. All contributing project authors may |
| 7 # be found in the AUTHORS file in the root of the source tree. | 7 # be found in the AUTHORS file in the root of the source tree. |
| 8 | 8 |
| 9 import("../../webrtc.gni") | 9 import("../../webrtc.gni") |
| 10 | 10 |
| (...skipping 91 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 102 | 102 |
| 103 if (is_win) { | 103 if (is_win) { |
| 104 cflags = [ | 104 cflags = [ |
| 105 # TODO(kjellander): Bug 261: fix this warning. | 105 # TODO(kjellander): Bug 261: fix this warning. |
| 106 "/wd4373", # virtual function override. | 106 "/wd4373", # virtual function override. |
| 107 ] | 107 ] |
| 108 } | 108 } |
| 109 | 109 |
| 110 deps = [ | 110 deps = [ |
| 111 ":remote_bitrate_estimator", | 111 ":remote_bitrate_estimator", |
| 112 "..:module_api", |
| 112 "../..:webrtc_common", | 113 "../..:webrtc_common", |
| 113 "../../base:gtest_prod", | 114 "../../base:gtest_prod", |
| 114 "../../base:rtc_base", | 115 "../../base:rtc_base", |
| 115 "../../base:rtc_base_approved", | 116 "../../base:rtc_base_approved", |
| 116 "../../system_wrappers", | 117 "../../system_wrappers", |
| 117 "../../test:test_support", | 118 "../../test:test_support", |
| 118 "../../voice_engine", | 119 "../../voice_engine", |
| 119 "../bitrate_controller", | 120 "../bitrate_controller", |
| 120 "../congestion_controller", | 121 "../congestion_controller", |
| 121 "../pacing", | 122 "../pacing", |
| (...skipping 111 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 233 } | 234 } |
| 234 | 235 |
| 235 if (is_win) { | 236 if (is_win) { |
| 236 cflags = [ | 237 cflags = [ |
| 237 # TODO(kjellander): bugs.webrtc.org/261: Fix this warning. | 238 # TODO(kjellander): bugs.webrtc.org/261: Fix this warning. |
| 238 "/wd4373", # virtual function override. | 239 "/wd4373", # virtual function override. |
| 239 ] | 240 ] |
| 240 } | 241 } |
| 241 } | 242 } |
| 242 } | 243 } |
| OLD | NEW |