| OLD | NEW |
| 1 # Copyright (c) 2015 The WebRTC project authors. All Rights Reserved. | 1 # Copyright (c) 2015 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 23 matching lines...) Expand all Loading... |
| 34 } | 34 } |
| 35 | 35 |
| 36 # TODO(nisse): These RTP targets should be moved elsewhere | 36 # TODO(nisse): These RTP targets should be moved elsewhere |
| 37 # when interfaces have stabilized. | 37 # when interfaces have stabilized. |
| 38 rtc_source_set("rtp_interfaces") { | 38 rtc_source_set("rtp_interfaces") { |
| 39 sources = [ | 39 sources = [ |
| 40 "rtcp_packet_sink_interface.h", | 40 "rtcp_packet_sink_interface.h", |
| 41 "rtp_packet_sink_interface.h", | 41 "rtp_packet_sink_interface.h", |
| 42 "rtp_stream_receiver_controller_interface.h", | 42 "rtp_stream_receiver_controller_interface.h", |
| 43 "rtp_transport_controller_send_interface.h", | 43 "rtp_transport_controller_send_interface.h", |
| 44 "secondary_rtp_sinks_container.h", |
| 44 ] | 45 ] |
| 45 deps = [ | 46 deps = [ |
| 46 "../base:rtc_base_approved", | 47 "../base:rtc_base_approved", |
| 47 ] | 48 ] |
| 48 } | 49 } |
| 49 | 50 |
| 50 rtc_source_set("rtp_receiver") { | 51 rtc_source_set("rtp_receiver") { |
| 51 sources = [ | 52 sources = [ |
| 52 "rsid_resolution_observer.h", | 53 "rsid_resolution_observer.h", |
| 53 "rtcp_demuxer.cc", | 54 "rtcp_demuxer.cc", |
| (...skipping 153 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 207 "//testing/gtest", | 208 "//testing/gtest", |
| 208 "//webrtc/test:field_trial", | 209 "//webrtc/test:field_trial", |
| 209 "//webrtc/test:test_common", | 210 "//webrtc/test:test_common", |
| 210 ] | 211 ] |
| 211 if (!build_with_chromium && is_clang) { | 212 if (!build_with_chromium && is_clang) { |
| 212 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). | 213 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). |
| 213 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] | 214 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] |
| 214 } | 215 } |
| 215 } | 216 } |
| 216 } | 217 } |
| OLD | NEW |