| 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_channel_group.cc", |  | 
| 28     "../video_engine/vie_channel_group.h", |  | 
| 29     "../video_engine/vie_defines.h", | 27     "../video_engine/vie_defines.h", | 
| 30     "../video_engine/vie_encoder.cc", | 28     "../video_engine/vie_encoder.cc", | 
| 31     "../video_engine/vie_encoder.h", | 29     "../video_engine/vie_encoder.h", | 
| 32     "../video_engine/vie_receiver.cc", | 30     "../video_engine/vie_receiver.cc", | 
| 33     "../video_engine/vie_receiver.h", | 31     "../video_engine/vie_receiver.h", | 
| 34     "../video_engine/vie_remb.cc", | 32     "../video_engine/vie_remb.cc", | 
| 35     "../video_engine/vie_remb.h", | 33     "../video_engine/vie_remb.h", | 
| 36     "../video_engine/vie_sync_module.cc", | 34     "../video_engine/vie_sync_module.cc", | 
| 37     "../video_engine/vie_sync_module.h", | 35     "../video_engine/vie_sync_module.h", | 
| 38     "encoded_frame_callback_adapter.cc", | 36     "encoded_frame_callback_adapter.cc", | 
| (...skipping 30 matching lines...) Expand all  Loading... | 
| 69     "../modules/rtp_rtcp", | 67     "../modules/rtp_rtcp", | 
| 70     "../modules/utility", | 68     "../modules/utility", | 
| 71     "../modules/video_capture:video_capture_module", | 69     "../modules/video_capture:video_capture_module", | 
| 72     "../modules/video_coding", | 70     "../modules/video_coding", | 
| 73     "../modules/video_processing", | 71     "../modules/video_processing", | 
| 74     "../modules/video_render:video_render_module", | 72     "../modules/video_render:video_render_module", | 
| 75     "../voice_engine", | 73     "../voice_engine", | 
| 76     "../system_wrappers", | 74     "../system_wrappers", | 
| 77   ] | 75   ] | 
| 78 } | 76 } | 
| OLD | NEW | 
|---|