Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(164)

Side by Side Diff: webrtc/video/BUILD.gn

Issue 2789843002: Delete VieRemb class, move functionality to PacketRouter. (Closed)
Patch Set: Delete obsolete suppression for PacketRouterTest.SendTransportFeedback. Created 3 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 28 matching lines...) Expand all
39 "transport_adapter.cc", 39 "transport_adapter.cc",
40 "transport_adapter.h", 40 "transport_adapter.h",
41 "video_receive_stream.cc", 41 "video_receive_stream.cc",
42 "video_receive_stream.h", 42 "video_receive_stream.h",
43 "video_send_stream.cc", 43 "video_send_stream.cc",
44 "video_send_stream.h", 44 "video_send_stream.h",
45 "video_stream_decoder.cc", 45 "video_stream_decoder.cc",
46 "video_stream_decoder.h", 46 "video_stream_decoder.h",
47 "vie_encoder.cc", 47 "vie_encoder.cc",
48 "vie_encoder.h", 48 "vie_encoder.h",
49 "vie_remb.cc",
50 "vie_remb.h",
51 ] 49 ]
52 50
53 if (!build_with_chromium && is_clang) { 51 if (!build_with_chromium && is_clang) {
54 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). 52 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163).
55 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] 53 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ]
56 } 54 }
57 55
58 deps = [ 56 deps = [
59 "..:webrtc_common", 57 "..:webrtc_common",
60 "../api:transport_api", 58 "../api:transport_api",
(...skipping 136 matching lines...) Expand 10 before | Expand all | Expand 10 after
197 "receive_statistics_proxy_unittest.cc", 195 "receive_statistics_proxy_unittest.cc",
198 "report_block_stats_unittest.cc", 196 "report_block_stats_unittest.cc",
199 "rtp_stream_receiver_unittest.cc", 197 "rtp_stream_receiver_unittest.cc",
200 "send_delay_stats_unittest.cc", 198 "send_delay_stats_unittest.cc",
201 "send_statistics_proxy_unittest.cc", 199 "send_statistics_proxy_unittest.cc",
202 "stats_counter_unittest.cc", 200 "stats_counter_unittest.cc",
203 "stream_synchronization_unittest.cc", 201 "stream_synchronization_unittest.cc",
204 "video_receive_stream_unittest.cc", 202 "video_receive_stream_unittest.cc",
205 "video_send_stream_tests.cc", 203 "video_send_stream_tests.cc",
206 "vie_encoder_unittest.cc", 204 "vie_encoder_unittest.cc",
207 "vie_remb_unittest.cc",
208 ] 205 ]
209 deps = [ 206 deps = [
210 ":video", 207 ":video",
211 "../media:rtc_media_base", 208 "../media:rtc_media_base",
212 "//testing/gmock", 209 "//testing/gmock",
213 "//testing/gtest", 210 "//testing/gtest",
214 ] 211 ]
215 if (!build_with_chromium && is_clang) { 212 if (!build_with_chromium && is_clang) {
216 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). 213 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163).
217 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] 214 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ]
218 } 215 }
219 if (rtc_use_h264) { 216 if (rtc_use_h264) {
220 defines += [ "WEBRTC_USE_H264" ] 217 defines += [ "WEBRTC_USE_H264" ]
221 } 218 }
222 } 219 }
223 } 220 }
OLDNEW
« no previous file with comments | « webrtc/modules/remote_bitrate_estimator/remote_estimator_proxy_unittest.cc ('k') | webrtc/video/rtp_stream_receiver.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698