| 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 16 matching lines...) Expand all Loading... |
| 27 deps = [ | 27 deps = [ |
| 28 "..:module_api", | 28 "..:module_api", |
| 29 "../..:webrtc_common", | 29 "../..:webrtc_common", |
| 30 "../../api:array_view", | 30 "../../api:array_view", |
| 31 "../../api:libjingle_peerconnection_api", | 31 "../../api:libjingle_peerconnection_api", |
| 32 "../../api:optional", | 32 "../../api:optional", |
| 33 "../../common_video", | 33 "../../common_video", |
| 34 "../../rtc_base:rtc_base_approved", | 34 "../../rtc_base:rtc_base_approved", |
| 35 "../../system_wrappers", | 35 "../../system_wrappers", |
| 36 ] | 36 ] |
| 37 | |
| 38 # TODO(crbug.com/webrtc/1348): Fix this warning. | |
| 39 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] | |
| 40 } | 37 } |
| 41 | 38 |
| 42 rtc_static_library("rtp_rtcp") { | 39 rtc_static_library("rtp_rtcp") { |
| 43 sources = [ | 40 sources = [ |
| 44 "include/flexfec_receiver.h", | 41 "include/flexfec_receiver.h", |
| 45 "include/flexfec_sender.h", | 42 "include/flexfec_sender.h", |
| 46 "include/receive_statistics.h", | 43 "include/receive_statistics.h", |
| 47 "include/remote_ntp_time_estimator.h", | 44 "include/remote_ntp_time_estimator.h", |
| 48 "include/rtp_header_parser.h", | 45 "include/rtp_header_parser.h", |
| 49 "include/rtp_payload_registry.h", | 46 "include/rtp_payload_registry.h", |
| (...skipping 332 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 382 ] | 379 ] |
| 383 | 380 |
| 384 # TODO(jschuh): bugs.webrtc.org/1348: fix this warning. | 381 # TODO(jschuh): bugs.webrtc.org/1348: fix this warning. |
| 385 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] | 382 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] |
| 386 if (!build_with_chromium && is_clang) { | 383 if (!build_with_chromium && is_clang) { |
| 387 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). | 384 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). |
| 388 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] | 385 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] |
| 389 } | 386 } |
| 390 } | 387 } |
| 391 } | 388 } |
| OLD | NEW |