| 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 | 10 |
| 11 source_set("video") { | 11 source_set("video") { |
| 12 sources = [ | 12 sources = [ |
| 13 "../video_engine/call_stats.cc", | 13 "../video_engine/call_stats.cc", |
| 14 "../video_engine/call_stats.h", | 14 "../video_engine/call_stats.h", |
| 15 "../video_engine/encoder_state_feedback.cc", | 15 "../video_engine/encoder_state_feedback.cc", |
| 16 "../video_engine/encoder_state_feedback.h", | 16 "../video_engine/encoder_state_feedback.h", |
| 17 "../video_engine/overuse_frame_detector.cc", | 17 "../video_engine/overuse_frame_detector.cc", |
| 18 "../video_engine/overuse_frame_detector.h", | 18 "../video_engine/overuse_frame_detector.h", |
| 19 "../video_engine/payload_router.cc", | 19 "../video_engine/payload_router.cc", |
| 20 "../video_engine/payload_router.h", | 20 "../video_engine/payload_router.h", |
| 21 "../video_engine/report_block_stats.cc", | 21 "../video_engine/report_block_stats.cc", |
| 22 "../video_engine/report_block_stats.h", | 22 "../video_engine/report_block_stats.h", |
| 23 "../video_engine/stream_synchronization.cc", | 23 "../video_engine/stream_synchronization.cc", |
| 24 "../video_engine/stream_synchronization.h", | 24 "../video_engine/stream_synchronization.h", |
| 25 "../video_engine/vie_channel.cc", | 25 "../video_engine/vie_channel.cc", |
| 26 "../video_engine/vie_channel.h", | 26 "../video_engine/vie_channel.h", |
| 27 "../video_engine/vie_defines.h", | |
| 28 "../video_engine/vie_encoder.cc", | 27 "../video_engine/vie_encoder.cc", |
| 29 "../video_engine/vie_encoder.h", | 28 "../video_engine/vie_encoder.h", |
| 30 "../video_engine/vie_receiver.cc", | 29 "../video_engine/vie_receiver.cc", |
| 31 "../video_engine/vie_receiver.h", | 30 "../video_engine/vie_receiver.h", |
| 32 "../video_engine/vie_remb.cc", | 31 "../video_engine/vie_remb.cc", |
| 33 "../video_engine/vie_remb.h", | 32 "../video_engine/vie_remb.h", |
| 34 "../video_engine/vie_sync_module.cc", | 33 "../video_engine/vie_sync_module.cc", |
| 35 "../video_engine/vie_sync_module.h", | 34 "../video_engine/vie_sync_module.h", |
| 36 "encoded_frame_callback_adapter.cc", | 35 "encoded_frame_callback_adapter.cc", |
| 37 "encoded_frame_callback_adapter.h", | 36 "encoded_frame_callback_adapter.h", |
| (...skipping 29 matching lines...) Expand all Loading... |
| 67 "../modules/rtp_rtcp", | 66 "../modules/rtp_rtcp", |
| 68 "../modules/utility", | 67 "../modules/utility", |
| 69 "../modules/video_capture:video_capture_module", | 68 "../modules/video_capture:video_capture_module", |
| 70 "../modules/video_coding", | 69 "../modules/video_coding", |
| 71 "../modules/video_processing", | 70 "../modules/video_processing", |
| 72 "../modules/video_render:video_render_module", | 71 "../modules/video_render:video_render_module", |
| 73 "../voice_engine", | 72 "../voice_engine", |
| 74 "../system_wrappers", | 73 "../system_wrappers", |
| 75 ] | 74 ] |
| 76 } | 75 } |
| OLD | NEW |