| 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("../build/webrtc.gni") | 9 import("../build/webrtc.gni") |
| 10 import("//testing/test.gni") | 10 import("//testing/test.gni") |
| 11 | 11 |
| 12 source_set("video") { | 12 source_set("video") { |
| 13 sources = [ | 13 sources = [ |
| 14 "call_stats.cc", | 14 "call_stats.cc", |
| 15 "call_stats.h", | 15 "call_stats.h", |
| 16 "encoder_state_feedback.cc", | 16 "encoder_state_feedback.cc", |
| 17 "encoder_state_feedback.h", | 17 "encoder_state_feedback.h", |
| 18 "overuse_frame_detector.cc", | 18 "overuse_frame_detector.cc", |
| 19 "overuse_frame_detector.h", | 19 "overuse_frame_detector.h", |
| 20 "payload_router.cc", | 20 "payload_router.cc", |
| 21 "payload_router.h", | 21 "payload_router.h", |
| 22 "receive_statistics_proxy.cc", | 22 "receive_statistics_proxy.cc", |
| 23 "receive_statistics_proxy.h", | 23 "receive_statistics_proxy.h", |
| 24 "report_block_stats.cc", | 24 "report_block_stats.cc", |
| 25 "report_block_stats.h", | 25 "report_block_stats.h", |
| 26 "rtp_stream_receiver.cc", | 26 "rtp_stream_receiver.cc", |
| 27 "rtp_stream_receiver.h", | 27 "rtp_stream_receiver.h", |
| 28 "rtp_streams_synchronizer.cc", |
| 29 "rtp_streams_synchronizer.h", |
| 28 "send_delay_stats.cc", | 30 "send_delay_stats.cc", |
| 29 "send_delay_stats.h", | 31 "send_delay_stats.h", |
| 30 "send_statistics_proxy.cc", | 32 "send_statistics_proxy.cc", |
| 31 "send_statistics_proxy.h", | 33 "send_statistics_proxy.h", |
| 32 "stats_counter.cc", | 34 "stats_counter.cc", |
| 33 "stats_counter.h", | 35 "stats_counter.h", |
| 34 "stream_synchronization.cc", | 36 "stream_synchronization.cc", |
| 35 "stream_synchronization.h", | 37 "stream_synchronization.h", |
| 36 "video_capture_input.cc", | 38 "video_capture_input.cc", |
| 37 "video_capture_input.h", | 39 "video_capture_input.h", |
| 38 "video_decoder.cc", | 40 "video_decoder.cc", |
| 39 "video_encoder.cc", | 41 "video_encoder.cc", |
| 40 "video_receive_stream.cc", | 42 "video_receive_stream.cc", |
| 41 "video_receive_stream.h", | 43 "video_receive_stream.h", |
| 42 "video_send_stream.cc", | 44 "video_send_stream.cc", |
| 43 "video_send_stream.h", | 45 "video_send_stream.h", |
| 44 "video_stream_decoder.cc", | 46 "video_stream_decoder.cc", |
| 45 "video_stream_decoder.h", | 47 "video_stream_decoder.h", |
| 46 "vie_encoder.cc", | 48 "vie_encoder.cc", |
| 47 "vie_encoder.h", | 49 "vie_encoder.h", |
| 48 "vie_remb.cc", | 50 "vie_remb.cc", |
| 49 "vie_remb.h", | 51 "vie_remb.h", |
| 50 "vie_sync_module.cc", | |
| 51 "vie_sync_module.h", | |
| 52 ] | 52 ] |
| 53 | 53 |
| 54 configs += [ "..:common_config" ] | 54 configs += [ "..:common_config" ] |
| 55 public_configs = [ "..:common_inherited_config" ] | 55 public_configs = [ "..:common_inherited_config" ] |
| 56 | 56 |
| 57 if (is_clang) { | 57 if (is_clang) { |
| 58 # Suppress warnings from Chrome's Clang plugins. | 58 # Suppress warnings from Chrome's Clang plugins. |
| 59 # See http://code.google.com/p/webrtc/issues/detail?id=163 for details. | 59 # See http://code.google.com/p/webrtc/issues/detail?id=163 for details. |
| 60 configs -= [ "//build/config/clang:find_bad_constructs" ] | 60 configs -= [ "//build/config/clang:find_bad_constructs" ] |
| 61 } | 61 } |
| (...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 106 "//testing/gmock", | 106 "//testing/gmock", |
| 107 "//testing/gtest", | 107 "//testing/gtest", |
| 108 ] | 108 ] |
| 109 if (is_clang) { | 109 if (is_clang) { |
| 110 # Suppress warnings from the Chromium Clang plugin. | 110 # Suppress warnings from the Chromium Clang plugin. |
| 111 # See http://code.google.com/p/webrtc/issues/detail?id=163 for details. | 111 # See http://code.google.com/p/webrtc/issues/detail?id=163 for details. |
| 112 configs -= [ "//build/config/clang:find_bad_constructs" ] | 112 configs -= [ "//build/config/clang:find_bad_constructs" ] |
| 113 } | 113 } |
| 114 } | 114 } |
| 115 } | 115 } |
| OLD | NEW |