| # Copyright (c) 2012 The WebRTC project authors. All Rights Reserved. | 
 | # | 
 | # Use of this source code is governed by a BSD-style license | 
 | # that can be found in the LICENSE file in the root of the source | 
 | # tree. An additional intellectual property rights grant can be found | 
 | # in the file PATENTS.  All contributing project authors may | 
 | # be found in the AUTHORS file in the root of the source tree. | 
 |  | 
 | { | 
 |   'target_defaults': { | 
 |     'conditions': [ | 
 |       ['include_video_engine_file_api==1', { | 
 |         'defines': [ 'WEBRTC_VIDEO_ENGINE_FILE_API', ], | 
 |       }], | 
 |     ], | 
 |   }, | 
 |   'targets': [ | 
 |     { | 
 |       'target_name': 'video_engine_core', | 
 |       'type': 'static_library', | 
 |       'dependencies': [ | 
 |  | 
 |         # common_video | 
 |        '<(webrtc_root)/common_video/common_video.gyp:common_video', | 
 |  | 
 |         # ModulesShared | 
 |         '<(webrtc_root)/modules/modules.gyp:media_file', | 
 |         '<(webrtc_root)/modules/modules.gyp:rtp_rtcp', | 
 |         '<(webrtc_root)/modules/modules.gyp:webrtc_utility', | 
 |  | 
 |         # ModulesVideo | 
 |         '<(webrtc_root)/modules/modules.gyp:bitrate_controller', | 
 |         '<(webrtc_root)/modules/modules.gyp:video_capture_module', | 
 |         '<(webrtc_root)/modules/modules.gyp:webrtc_video_coding', | 
 |         '<(webrtc_root)/modules/modules.gyp:video_processing', | 
 |         '<(webrtc_root)/modules/modules.gyp:video_render_module', | 
 |  | 
 |         # VoiceEngine | 
 |         '<(webrtc_root)/voice_engine/voice_engine.gyp:voice_engine_core', | 
 |  | 
 |         # system_wrappers | 
 |         '<(webrtc_root)/system_wrappers/source/system_wrappers.gyp:system_wrappers', | 
 |       ], | 
 |       'include_dirs': [ | 
 |         'include', | 
 |         '../common_video/interface', | 
 |         '../modules/video_render/', | 
 |       ], | 
 |       'direct_dependent_settings': { | 
 |         'include_dirs': [ | 
 |           'include', | 
 |         ], | 
 |       }, | 
 |       'sources': [ | 
 |         # interface | 
 |         'include/vie_base.h', | 
 |         'include/vie_capture.h', | 
 |         'include/vie_codec.h', | 
 |         'include/vie_encryption.h', | 
 |         'include/vie_errors.h', | 
 |         'include/vie_external_codec.h', | 
 |         'include/vie_file.h', | 
 |         'include/vie_image_process.h', | 
 |         'include/vie_network.h', | 
 |         'include/vie_render.h', | 
 |         'include/vie_rtp_rtcp.h', | 
 |  | 
 |         # headers | 
 |         'call_stats.h', | 
 |         'encoder_state_feedback.h', | 
 |         'stream_synchronization.h', | 
 |         'vie_base_impl.h', | 
 |         'vie_capture_impl.h', | 
 |         'vie_codec_impl.h', | 
 |         'vie_defines.h', | 
 |         'vie_encryption_impl.h', | 
 |         'vie_external_codec_impl.h', | 
 |         'vie_file_impl.h', | 
 |         'vie_image_process_impl.h', | 
 |         'vie_impl.h', | 
 |         'vie_network_impl.h', | 
 |         'vie_ref_count.h', | 
 |         'vie_remb.h', | 
 |         'vie_render_impl.h', | 
 |         'vie_rtp_rtcp_impl.h', | 
 |         'vie_shared_data.h', | 
 |         'vie_capturer.h', | 
 |         'vie_channel.h', | 
 |         'vie_channel_group.h', | 
 |         'vie_channel_manager.h', | 
 |         'vie_encoder.h', | 
 |         'vie_file_image.h', | 
 |         'vie_file_player.h', | 
 |         'vie_file_recorder.h', | 
 |         'vie_frame_provider_base.h', | 
 |         'vie_input_manager.h', | 
 |         'vie_manager_base.h', | 
 |         'vie_receiver.h', | 
 |         'vie_renderer.h', | 
 |         'vie_render_manager.h', | 
 |         'vie_sender.h', | 
 |         'vie_sync_module.h', | 
 |  | 
 |         # ViE | 
 |         'call_stats.cc', | 
 |         'encoder_state_feedback.cc', | 
 |         'stream_synchronization.cc', | 
 |         'vie_base_impl.cc', | 
 |         'vie_capture_impl.cc', | 
 |         'vie_codec_impl.cc', | 
 |         'vie_encryption_impl.cc', | 
 |         'vie_external_codec_impl.cc', | 
 |         'vie_file_impl.cc', | 
 |         'vie_image_process_impl.cc', | 
 |         'vie_impl.cc', | 
 |         'vie_network_impl.cc', | 
 |         'vie_ref_count.cc', | 
 |         'vie_render_impl.cc', | 
 |         'vie_rtp_rtcp_impl.cc', | 
 |         'vie_shared_data.cc', | 
 |         'vie_capturer.cc', | 
 |         'vie_channel.cc', | 
 |         'vie_channel_group.cc', | 
 |         'vie_channel_manager.cc', | 
 |         'vie_encoder.cc', | 
 |         'vie_file_image.cc', | 
 |         'vie_file_player.cc', | 
 |         'vie_file_recorder.cc', | 
 |         'vie_frame_provider_base.cc', | 
 |         'vie_input_manager.cc', | 
 |         'vie_manager_base.cc', | 
 |         'vie_receiver.cc', | 
 |         'vie_remb.cc', | 
 |         'vie_renderer.cc', | 
 |         'vie_render_manager.cc', | 
 |         'vie_sender.cc', | 
 |         'vie_sync_module.cc', | 
 |       ], # source | 
 |       # TODO(jschuh): Bug 1348: fix size_t to int truncations. | 
 |       'msvs_disabled_warnings': [ 4267, ], | 
 |     }, | 
 |   ], # targets | 
 |   'conditions': [ | 
 |     ['include_tests==1', { | 
 |       'targets': [ | 
 |         { | 
 |           'target_name': 'video_engine_core_unittests', | 
 |           'type': 'executable', | 
 |           'dependencies': [ | 
 |             'video_engine_core', | 
 |             '<(DEPTH)/testing/gtest.gyp:gtest', | 
 |             '<(DEPTH)/testing/gmock.gyp:gmock', | 
 |             '<(webrtc_root)/test/test.gyp:test_support_main', | 
 |           ], | 
 |           'include_dirs': [ | 
 |             '..', | 
 |             '../modules/interface', | 
 |             '../modules/rtp_rtcp/interface', | 
 |           ], | 
 |           'sources': [ | 
 |             'call_stats_unittest.cc', | 
 |             'encoder_state_feedback_unittest.cc', | 
 |             'stream_synchronization_unittest.cc', | 
 |             'vie_remb_unittest.cc', | 
 |           ], | 
 |         }, | 
 |       ], # targets | 
 |     }], # include_tests | 
 |   ], # conditions | 
 | } |