Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(76)

Side by Side Diff: webrtc/video/BUILD.gn

Issue 1506773002: Merge webrtc/video_engine/ into webrtc/video/ (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: rebase Created 5 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « webrtc/transport.h ('k') | webrtc/video/call_stats.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 "call_stats.cc",
14 "../video_engine/call_stats.h", 14 "call_stats.h",
15 "../video_engine/encoder_state_feedback.cc",
16 "../video_engine/encoder_state_feedback.h",
17 "../video_engine/overuse_frame_detector.cc",
18 "../video_engine/overuse_frame_detector.h",
19 "../video_engine/payload_router.cc",
20 "../video_engine/payload_router.h",
21 "../video_engine/report_block_stats.cc",
22 "../video_engine/report_block_stats.h",
23 "../video_engine/stream_synchronization.cc",
24 "../video_engine/stream_synchronization.h",
25 "../video_engine/vie_channel.cc",
26 "../video_engine/vie_channel.h",
27 "../video_engine/vie_encoder.cc",
28 "../video_engine/vie_encoder.h",
29 "../video_engine/vie_receiver.cc",
30 "../video_engine/vie_receiver.h",
31 "../video_engine/vie_remb.cc",
32 "../video_engine/vie_remb.h",
33 "../video_engine/vie_sync_module.cc",
34 "../video_engine/vie_sync_module.h",
35 "encoded_frame_callback_adapter.cc", 15 "encoded_frame_callback_adapter.cc",
36 "encoded_frame_callback_adapter.h", 16 "encoded_frame_callback_adapter.h",
17 "encoder_state_feedback.cc",
18 "encoder_state_feedback.h",
19 "overuse_frame_detector.cc",
20 "overuse_frame_detector.h",
21 "payload_router.cc",
22 "payload_router.h",
37 "receive_statistics_proxy.cc", 23 "receive_statistics_proxy.cc",
38 "receive_statistics_proxy.h", 24 "receive_statistics_proxy.h",
25 "report_block_stats.cc",
26 "report_block_stats.h",
39 "send_statistics_proxy.cc", 27 "send_statistics_proxy.cc",
40 "send_statistics_proxy.h", 28 "send_statistics_proxy.h",
29 "stream_synchronization.cc",
30 "stream_synchronization.h",
41 "video_capture_input.cc", 31 "video_capture_input.cc",
42 "video_capture_input.h", 32 "video_capture_input.h",
43 "video_decoder.cc", 33 "video_decoder.cc",
44 "video_encoder.cc", 34 "video_encoder.cc",
45 "video_receive_stream.cc", 35 "video_receive_stream.cc",
46 "video_receive_stream.h", 36 "video_receive_stream.h",
47 "video_send_stream.cc", 37 "video_send_stream.cc",
48 "video_send_stream.h", 38 "video_send_stream.h",
39 "vie_channel.cc",
40 "vie_channel.h",
41 "vie_encoder.cc",
42 "vie_encoder.h",
43 "vie_receiver.cc",
44 "vie_receiver.h",
45 "vie_remb.cc",
46 "vie_remb.h",
47 "vie_sync_module.cc",
48 "vie_sync_module.h",
49 ] 49 ]
50 50
51 configs += [ "..:common_config" ] 51 configs += [ "..:common_config" ]
52 public_configs = [ "..:common_inherited_config" ] 52 public_configs = [ "..:common_inherited_config" ]
53 53
54 if (is_clang) { 54 if (is_clang) {
55 # Suppress warnings from Chrome's Clang plugins. 55 # Suppress warnings from Chrome's Clang plugins.
56 # See http://code.google.com/p/webrtc/issues/detail?id=163 for details. 56 # See http://code.google.com/p/webrtc/issues/detail?id=163 for details.
57 configs -= [ "//build/config/clang:find_bad_constructs" ] 57 configs -= [ "//build/config/clang:find_bad_constructs" ]
58 } 58 }
59 59
60 deps = [ 60 deps = [
61 "..:rtc_event_log", 61 "..:rtc_event_log",
62 "..:webrtc_common", 62 "..:webrtc_common",
63 "../common_video", 63 "../common_video",
64 "../modules/bitrate_controller", 64 "../modules/bitrate_controller",
65 "../modules/pacing", 65 "../modules/pacing",
66 "../modules/rtp_rtcp", 66 "../modules/rtp_rtcp",
67 "../modules/utility", 67 "../modules/utility",
68 "../modules/video_capture:video_capture_module", 68 "../modules/video_capture:video_capture_module",
69 "../modules/video_coding", 69 "../modules/video_coding",
70 "../modules/video_processing", 70 "../modules/video_processing",
71 "../modules/video_render:video_render_module", 71 "../modules/video_render:video_render_module",
72 "../system_wrappers",
72 "../voice_engine", 73 "../voice_engine",
73 "../system_wrappers",
74 ] 74 ]
75 } 75 }
OLDNEW
« no previous file with comments | « webrtc/transport.h ('k') | webrtc/video/call_stats.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698