| 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 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 48 "video_stream_encoder.h", | 48 "video_stream_encoder.h", |
| 49 ] | 49 ] |
| 50 | 50 |
| 51 if (!build_with_chromium && is_clang) { | 51 if (!build_with_chromium && is_clang) { |
| 52 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). | 52 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). |
| 53 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] | 53 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] |
| 54 } | 54 } |
| 55 | 55 |
| 56 deps = [ | 56 deps = [ |
| 57 "..:webrtc_common", | 57 "..:webrtc_common", |
| 58 "../api:optional", |
| 58 "../api:transport_api", | 59 "../api:transport_api", |
| 59 "../api/video_codecs:video_codecs_api", | 60 "../api/video_codecs:video_codecs_api", |
| 60 "../call:call_interfaces", | 61 "../call:call_interfaces", |
| 61 "../call:rtp_interfaces", | 62 "../call:rtp_interfaces", |
| 62 "../call:video_stream_api", | 63 "../call:video_stream_api", |
| 63 "../common_video", | 64 "../common_video", |
| 64 "../logging:rtc_event_log_api", | 65 "../logging:rtc_event_log_api", |
| 65 "../media:rtc_media_base", | 66 "../media:rtc_media_base", |
| 66 "../modules:module_api", | 67 "../modules:module_api", |
| 67 "../modules/bitrate_controller", | 68 "../modules/bitrate_controller", |
| (...skipping 18 matching lines...) Expand all Loading... |
| 86 | 87 |
| 87 if (rtc_include_tests) { | 88 if (rtc_include_tests) { |
| 88 rtc_source_set("video_quality_test") { | 89 rtc_source_set("video_quality_test") { |
| 89 testonly = true | 90 testonly = true |
| 90 visibility = [ ":*" ] # Only targets in this file can depend on this. | 91 visibility = [ ":*" ] # Only targets in this file can depend on this. |
| 91 sources = [ | 92 sources = [ |
| 92 "video_quality_test.cc", | 93 "video_quality_test.cc", |
| 93 "video_quality_test.h", | 94 "video_quality_test.h", |
| 94 ] | 95 ] |
| 95 deps = [ | 96 deps = [ |
| 97 "../api:optional", |
| 96 "../call:call_interfaces", | 98 "../call:call_interfaces", |
| 97 "../common_video", | 99 "../common_video", |
| 98 "../logging:rtc_event_log_api", | 100 "../logging:rtc_event_log_api", |
| 99 "../media:rtc_media", | 101 "../media:rtc_media", |
| 100 "../media:rtc_media_base", | 102 "../media:rtc_media_base", |
| 101 "../modules/audio_mixer:audio_mixer_impl", | 103 "../modules/audio_mixer:audio_mixer_impl", |
| 102 "../modules/rtp_rtcp", | 104 "../modules/rtp_rtcp", |
| 103 "../modules/video_coding:webrtc_h264", | 105 "../modules/video_coding:webrtc_h264", |
| 104 "../modules/video_coding:webrtc_vp8", | 106 "../modules/video_coding:webrtc_vp8", |
| 105 "../modules/video_coding:webrtc_vp9", | 107 "../modules/video_coding:webrtc_vp9", |
| (...skipping 149 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 255 "send_delay_stats_unittest.cc", | 257 "send_delay_stats_unittest.cc", |
| 256 "send_statistics_proxy_unittest.cc", | 258 "send_statistics_proxy_unittest.cc", |
| 257 "stats_counter_unittest.cc", | 259 "stats_counter_unittest.cc", |
| 258 "stream_synchronization_unittest.cc", | 260 "stream_synchronization_unittest.cc", |
| 259 "video_receive_stream_unittest.cc", | 261 "video_receive_stream_unittest.cc", |
| 260 "video_send_stream_tests.cc", | 262 "video_send_stream_tests.cc", |
| 261 "video_stream_encoder_unittest.cc", | 263 "video_stream_encoder_unittest.cc", |
| 262 ] | 264 ] |
| 263 deps = [ | 265 deps = [ |
| 264 ":video", | 266 ":video", |
| 267 "../api:optional", |
| 265 "../api:video_frame_api", | 268 "../api:video_frame_api", |
| 266 "../api/video_codecs:video_codecs_api", | 269 "../api/video_codecs:video_codecs_api", |
| 267 "../call:call_interfaces", | 270 "../call:call_interfaces", |
| 268 "../call:mock_rtp_interfaces", | 271 "../call:mock_rtp_interfaces", |
| 269 "../call:rtp_receiver", | 272 "../call:rtp_receiver", |
| 270 "../call:rtp_sender", | 273 "../call:rtp_sender", |
| 271 "../call:video_stream_api", | 274 "../call:video_stream_api", |
| 272 "../common_video", | 275 "../common_video", |
| 273 "../logging:rtc_event_log_api", | 276 "../logging:rtc_event_log_api", |
| 274 "../media:rtc_media", | 277 "../media:rtc_media", |
| (...skipping 27 matching lines...) Expand all Loading... |
| 302 ] | 305 ] |
| 303 if (!build_with_chromium && is_clang) { | 306 if (!build_with_chromium && is_clang) { |
| 304 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). | 307 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). |
| 305 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] | 308 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] |
| 306 } | 309 } |
| 307 if (rtc_use_h264) { | 310 if (rtc_use_h264) { |
| 308 defines += [ "WEBRTC_USE_H264" ] | 311 defines += [ "WEBRTC_USE_H264" ] |
| 309 } | 312 } |
| 310 } | 313 } |
| 311 } | 314 } |
| OLD | NEW |