| 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 125 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 136 | 136 |
| 137 rtc_source_set("video_stream_api") { | 137 rtc_source_set("video_stream_api") { |
| 138 sources = [ | 138 sources = [ |
| 139 "video_config.cc", | 139 "video_config.cc", |
| 140 "video_config.h", | 140 "video_config.h", |
| 141 "video_receive_stream.cc", | 141 "video_receive_stream.cc", |
| 142 "video_receive_stream.h", | 142 "video_receive_stream.h", |
| 143 "video_send_stream.cc", | 143 "video_send_stream.cc", |
| 144 "video_send_stream.h", | 144 "video_send_stream.h", |
| 145 ] | 145 ] |
| 146 |
| 147 if (!build_with_chromium && is_clang) { |
| 148 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). |
| 149 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] |
| 150 } |
| 151 |
| 146 deps = [ | 152 deps = [ |
| 147 ":rtp_interfaces", | 153 ":rtp_interfaces", |
| 148 "../:webrtc_common", | 154 "../:webrtc_common", |
| 149 "../api:libjingle_peerconnection_api", | 155 "../api:libjingle_peerconnection_api", |
| 150 "../api:optional", | 156 "../api:optional", |
| 151 "../api:transport_api", | 157 "../api:transport_api", |
| 152 "../common_video:common_video", | 158 "../common_video:common_video", |
| 153 "../rtc_base:rtc_base_approved", | 159 "../rtc_base:rtc_base_approved", |
| 154 ] | 160 ] |
| 155 } | 161 } |
| (...skipping 102 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 258 sources = [ | 264 sources = [ |
| 259 "test/mock_rtp_packet_sink_interface.h", | 265 "test/mock_rtp_packet_sink_interface.h", |
| 260 ] | 266 ] |
| 261 deps = [ | 267 deps = [ |
| 262 ":rtp_interfaces", | 268 ":rtp_interfaces", |
| 263 "../test:test_support", | 269 "../test:test_support", |
| 264 "//testing/gmock", | 270 "//testing/gmock", |
| 265 ] | 271 ] |
| 266 } | 272 } |
| 267 } | 273 } |
| OLD | NEW |