| 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 151 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 162 if (!build_with_chromium && is_clang) { | 162 if (!build_with_chromium && is_clang) { |
| 163 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). | 163 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). |
| 164 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] | 164 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] |
| 165 } | 165 } |
| 166 | 166 |
| 167 deps = [ | 167 deps = [ |
| 168 "..:module_api", | 168 "..:module_api", |
| 169 "../..:webrtc_common", | 169 "../..:webrtc_common", |
| 170 "../../api:array_view", | 170 "../../api:array_view", |
| 171 "../../api:libjingle_peerconnection_api", | 171 "../../api:libjingle_peerconnection_api", |
| 172 "../../api:optional", |
| 172 "../../api:transport_api", | 173 "../../api:transport_api", |
| 173 "../../api/audio_codecs:audio_codecs_api", | 174 "../../api/audio_codecs:audio_codecs_api", |
| 174 "../../common_video", | 175 "../../common_video", |
| 175 "../../logging:rtc_event_log_api", | 176 "../../logging:rtc_event_log_api", |
| 176 "../../rtc_base:gtest_prod", | 177 "../../rtc_base:gtest_prod", |
| 177 "../../rtc_base:rtc_base_approved", | 178 "../../rtc_base:rtc_base_approved", |
| 178 "../../rtc_base:sequenced_task_checker", | 179 "../../rtc_base:sequenced_task_checker", |
| 179 "../../system_wrappers", | 180 "../../system_wrappers", |
| 180 "../audio_coding:audio_format_conversion", | 181 "../audio_coding:audio_format_conversion", |
| 181 "../remote_bitrate_estimator", | 182 "../remote_bitrate_estimator", |
| (...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 215 rtc_source_set("mock_rtp_rtcp") { | 216 rtc_source_set("mock_rtp_rtcp") { |
| 216 testonly = true | 217 testonly = true |
| 217 sources = [ | 218 sources = [ |
| 218 "mocks/mock_recovered_packet_receiver.h", | 219 "mocks/mock_recovered_packet_receiver.h", |
| 219 "mocks/mock_rtcp_rtt_stats.h", | 220 "mocks/mock_rtcp_rtt_stats.h", |
| 220 "mocks/mock_rtp_rtcp.h", | 221 "mocks/mock_rtp_rtcp.h", |
| 221 ] | 222 ] |
| 222 deps = [ | 223 deps = [ |
| 223 ":rtp_rtcp", | 224 ":rtp_rtcp", |
| 224 "..:module_api", | 225 "..:module_api", |
| 226 "../../api:optional", |
| 225 "../../rtc_base:rtc_base_approved", | 227 "../../rtc_base:rtc_base_approved", |
| 226 "../../test:test_support", | 228 "../../test:test_support", |
| 227 ] | 229 ] |
| 228 } | 230 } |
| 229 | 231 |
| 230 if (rtc_include_tests) { | 232 if (rtc_include_tests) { |
| 231 rtc_executable("test_packet_masks_metrics") { | 233 rtc_executable("test_packet_masks_metrics") { |
| 232 testonly = true | 234 testonly = true |
| 233 | 235 |
| 234 sources = [ | 236 sources = [ |
| (...skipping 121 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 356 ] | 358 ] |
| 357 | 359 |
| 358 # TODO(jschuh): bugs.webrtc.org/1348: fix this warning. | 360 # TODO(jschuh): bugs.webrtc.org/1348: fix this warning. |
| 359 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] | 361 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] |
| 360 if (!build_with_chromium && is_clang) { | 362 if (!build_with_chromium && is_clang) { |
| 361 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). | 363 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). |
| 362 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] | 364 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] |
| 363 } | 365 } |
| 364 } | 366 } |
| 365 } | 367 } |
| OLD | NEW |