| 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("../../build/webrtc.gni") | 9 import("../../build/webrtc.gni") |
| 10 | 10 |
| 11 rtc_static_library("rtp_rtcp") { | 11 rtc_static_library("rtp_rtcp") { |
| 12 sources = [ | 12 sources = [ |
| 13 "include/flexfec_receiver.h", | 13 "include/flexfec_receiver.h", |
| 14 "include/flexfec_sender.h", | 14 "include/flexfec_sender.h", |
| 15 "include/receive_statistics.h", | 15 "include/receive_statistics.h", |
| 16 "include/remote_ntp_time_estimator.h", | 16 "include/remote_ntp_time_estimator.h", |
| 17 "include/rtp_header_parser.h", | 17 "include/rtp_header_parser.h", |
| 18 "include/rtp_payload_registry.h", | 18 "include/rtp_payload_registry.h", |
| 19 "include/rtp_receiver.h", | 19 "include/rtp_receiver.h", |
| 20 "include/rtp_rtcp.h", | 20 "include/rtp_rtcp.h", |
| 21 "include/rtp_rtcp_defines.h", | 21 "include/rtp_rtcp_defines.h", |
| 22 "include/ulpfec_receiver.h", | 22 "include/ulpfec_receiver.h", |
| 23 "mocks/mock_rtp_rtcp.h", | |
| 24 "source/byte_io.h", | 23 "source/byte_io.h", |
| 25 "source/dtmf_queue.cc", | 24 "source/dtmf_queue.cc", |
| 26 "source/dtmf_queue.h", | 25 "source/dtmf_queue.h", |
| 27 "source/fec_private_tables_bursty.h", | 26 "source/fec_private_tables_bursty.h", |
| 28 "source/fec_private_tables_random.h", | 27 "source/fec_private_tables_random.h", |
| 29 "source/flexfec_header_reader_writer.cc", | 28 "source/flexfec_header_reader_writer.cc", |
| 30 "source/flexfec_header_reader_writer.h", | 29 "source/flexfec_header_reader_writer.h", |
| 31 "source/flexfec_receiver.cc", | 30 "source/flexfec_receiver.cc", |
| 32 "source/flexfec_sender.cc", | 31 "source/flexfec_sender.cc", |
| 33 "source/forward_error_correction.cc", | 32 "source/forward_error_correction.cc", |
| (...skipping 134 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 168 } | 167 } |
| 169 | 168 |
| 170 if (!build_with_chromium && is_clang) { | 169 if (!build_with_chromium && is_clang) { |
| 171 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). | 170 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). |
| 172 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] | 171 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] |
| 173 } | 172 } |
| 174 | 173 |
| 175 deps = [ | 174 deps = [ |
| 176 "../..:webrtc_common", | 175 "../..:webrtc_common", |
| 177 "../../api:transport_api", | 176 "../../api:transport_api", |
| 177 "../../base:gtest_prod", |
| 178 "../../base:rtc_base_approved", |
| 179 "../../base:rtc_task_queue", |
| 180 "../../call:call_interfaces", |
| 178 "../../common_video", | 181 "../../common_video", |
| 182 "../../logging:rtc_event_log_api", |
| 179 "../../system_wrappers", | 183 "../../system_wrappers", |
| 180 "../remote_bitrate_estimator", | 184 "../remote_bitrate_estimator", |
| 181 ] | 185 ] |
| 182 | 186 |
| 183 # TODO(jschuh): Bug 1348: fix this warning. | 187 # TODO(jschuh): Bug 1348: fix this warning. |
| 184 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] | 188 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] |
| 185 | 189 |
| 186 if (is_win) { | 190 if (is_win) { |
| 187 cflags = [ | 191 cflags = [ |
| 188 # TODO(kjellander): Bug 261: fix this warning. | 192 # TODO(kjellander): Bug 261: fix this warning. |
| (...skipping 11 matching lines...) Expand all Loading... |
| 200 "test/testFec/test_packet_masks_metrics.cc", | 204 "test/testFec/test_packet_masks_metrics.cc", |
| 201 ] | 205 ] |
| 202 | 206 |
| 203 deps = [ | 207 deps = [ |
| 204 ":rtp_rtcp", | 208 ":rtp_rtcp", |
| 205 "//testing/gtest", | 209 "//testing/gtest", |
| 206 "//webrtc/test:test_main", | 210 "//webrtc/test:test_main", |
| 207 ] | 211 ] |
| 208 } # test_packet_masks_metrics | 212 } # test_packet_masks_metrics |
| 209 } | 213 } |
| OLD | NEW |