| OLD | NEW |
| (Empty) |
| 1 # Copyright (c) 2014 The WebRTC project authors. All Rights Reserved. | |
| 2 # | |
| 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 | |
| 5 # tree. An additional intellectual property rights grant can be found | |
| 6 # in the file PATENTS. All contributing project authors may | |
| 7 # be found in the AUTHORS file in the root of the source tree. | |
| 8 | |
| 9 import("../build/webrtc.gni") | |
| 10 | |
| 11 source_set("video_engine") { | |
| 12 deps = [ | |
| 13 ":video_engine_core", | |
| 14 ] | |
| 15 } | |
| 16 | |
| 17 source_set("video_engine_core") { | |
| 18 sources = [ | |
| 19 "call_stats.cc", | |
| 20 "call_stats.h", | |
| 21 "encoder_state_feedback.cc", | |
| 22 "encoder_state_feedback.h", | |
| 23 "overuse_frame_detector.cc", | |
| 24 "overuse_frame_detector.h", | |
| 25 "payload_router.cc", | |
| 26 "payload_router.h", | |
| 27 "report_block_stats.cc", | |
| 28 "report_block_stats.h", | |
| 29 "stream_synchronization.cc", | |
| 30 "stream_synchronization.h", | |
| 31 "vie_capturer.cc", | |
| 32 "vie_capturer.h", | |
| 33 "vie_channel.cc", | |
| 34 "vie_channel.h", | |
| 35 "vie_channel_group.cc", | |
| 36 "vie_channel_group.h", | |
| 37 "vie_defines.h", | |
| 38 "vie_encoder.cc", | |
| 39 "vie_encoder.h", | |
| 40 "vie_receiver.cc", | |
| 41 "vie_receiver.h", | |
| 42 "vie_remb.cc", | |
| 43 "vie_remb.h", | |
| 44 "vie_sync_module.cc", | |
| 45 "vie_sync_module.h", | |
| 46 ] | |
| 47 | |
| 48 configs += [ "..:common_config" ] | |
| 49 public_configs = [ "..:common_inherited_config" ] | |
| 50 | |
| 51 if (is_clang) { | |
| 52 # Suppress warnings from Chrome's Clang plugins. | |
| 53 # See http://code.google.com/p/webrtc/issues/detail?id=163 for details. | |
| 54 configs -= [ "//build/config/clang:find_bad_constructs" ] | |
| 55 } | |
| 56 | |
| 57 deps = [ | |
| 58 "..:webrtc_common", | |
| 59 "../common_video", | |
| 60 "../modules/bitrate_controller", | |
| 61 "../modules/rtp_rtcp", | |
| 62 "../modules/utility", | |
| 63 "../modules/video_capture:video_capture_module", | |
| 64 "../modules/video_coding", | |
| 65 "../modules/video_processing", | |
| 66 "../modules/video_render:video_render_module", | |
| 67 "../voice_engine", | |
| 68 "../system_wrappers", | |
| 69 ] | |
| 70 } | |
| OLD | NEW |