| 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 26 matching lines...) Expand all Loading... |
| 37 "stream_synchronization.cc", | 37 "stream_synchronization.cc", |
| 38 "stream_synchronization.h", | 38 "stream_synchronization.h", |
| 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 "video_stream_encoder.cc", |
| 48 "vie_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 "..:video_stream_api", | 57 "..:video_stream_api", |
| 58 "..:webrtc_common", | 58 "..:webrtc_common", |
| (...skipping 191 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 250 "quality_threshold_unittest.cc", | 250 "quality_threshold_unittest.cc", |
| 251 "receive_statistics_proxy_unittest.cc", | 251 "receive_statistics_proxy_unittest.cc", |
| 252 "report_block_stats_unittest.cc", | 252 "report_block_stats_unittest.cc", |
| 253 "rtp_video_stream_receiver_unittest.cc", | 253 "rtp_video_stream_receiver_unittest.cc", |
| 254 "send_delay_stats_unittest.cc", | 254 "send_delay_stats_unittest.cc", |
| 255 "send_statistics_proxy_unittest.cc", | 255 "send_statistics_proxy_unittest.cc", |
| 256 "stats_counter_unittest.cc", | 256 "stats_counter_unittest.cc", |
| 257 "stream_synchronization_unittest.cc", | 257 "stream_synchronization_unittest.cc", |
| 258 "video_receive_stream_unittest.cc", | 258 "video_receive_stream_unittest.cc", |
| 259 "video_send_stream_tests.cc", | 259 "video_send_stream_tests.cc", |
| 260 "vie_encoder_unittest.cc", | 260 "video_stream_encoder_unittest.cc", |
| 261 ] | 261 ] |
| 262 deps = [ | 262 deps = [ |
| 263 ":video", | 263 ":video", |
| 264 "..:video_stream_api", | 264 "..:video_stream_api", |
| 265 "../api:video_frame_api", | 265 "../api:video_frame_api", |
| 266 "../api/video_codecs:video_codecs_api", | 266 "../api/video_codecs:video_codecs_api", |
| 267 "../call:call_interfaces", | 267 "../call:call_interfaces", |
| 268 "../call:mock_rtp_interfaces", | 268 "../call:mock_rtp_interfaces", |
| 269 "../call:rtp_receiver", | 269 "../call:rtp_receiver", |
| 270 "../common_video", | 270 "../common_video", |
| (...skipping 28 matching lines...) Expand all Loading... |
| 299 ] | 299 ] |
| 300 if (!build_with_chromium && is_clang) { | 300 if (!build_with_chromium && is_clang) { |
| 301 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). | 301 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). |
| 302 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] | 302 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] |
| 303 } | 303 } |
| 304 if (rtc_use_h264) { | 304 if (rtc_use_h264) { |
| 305 defines += [ "WEBRTC_USE_H264" ] | 305 defines += [ "WEBRTC_USE_H264" ] |
| 306 } | 306 } |
| 307 } | 307 } |
| 308 } | 308 } |
| OLD | NEW |