blob: 49df4009fb948cd9a5315296f0cc93099bbd3680 [file] [log] [blame]
kjellander@webrtc.org3610f632014-06-23 19:21:07 +00001# 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
9import("../../build/webrtc.gni")
10
11source_set("video_coding") {
12 sources = [
13 "main/interface/video_coding.h",
14 "main/interface/video_coding_defines.h",
15 "main/source/codec_database.cc",
16 "main/source/codec_database.h",
17 "main/source/codec_timer.cc",
18 "main/source/codec_timer.h",
19 "main/source/content_metrics_processing.cc",
20 "main/source/content_metrics_processing.h",
21 "main/source/decoding_state.cc",
22 "main/source/decoding_state.h",
23 "main/source/encoded_frame.cc",
24 "main/source/encoded_frame.h",
25 "main/source/er_tables_xor.h",
26 "main/source/fec_tables_xor.h",
27 "main/source/frame_buffer.cc",
28 "main/source/frame_buffer.h",
29 "main/source/generic_decoder.cc",
30 "main/source/generic_decoder.h",
31 "main/source/generic_encoder.cc",
32 "main/source/generic_encoder.h",
33 "main/source/inter_frame_delay.cc",
34 "main/source/inter_frame_delay.h",
35 "main/source/internal_defines.h",
36 "main/source/jitter_buffer.cc",
37 "main/source/jitter_buffer.h",
38 "main/source/jitter_buffer_common.h",
39 "main/source/jitter_estimator.cc",
40 "main/source/jitter_estimator.h",
41 "main/source/media_opt_util.cc",
42 "main/source/media_opt_util.h",
43 "main/source/media_optimization.cc",
44 "main/source/media_optimization.h",
45 "main/source/nack_fec_tables.h",
46 "main/source/packet.cc",
47 "main/source/packet.h",
48 "main/source/qm_select_data.h",
49 "main/source/qm_select.cc",
50 "main/source/qm_select.h",
51 "main/source/receiver.cc",
52 "main/source/receiver.h",
53 "main/source/rtt_filter.cc",
54 "main/source/rtt_filter.h",
55 "main/source/session_info.cc",
56 "main/source/session_info.h",
57 "main/source/timestamp_map.cc",
58 "main/source/timestamp_map.h",
59 "main/source/timing.cc",
60 "main/source/timing.h",
61 "main/source/video_coding_impl.cc",
62 "main/source/video_coding_impl.h",
63 "main/source/video_receiver.cc",
64 "main/source/video_sender.cc",
65 ]
66
kjellander@webrtc.org5a2b2f12014-08-25 14:15:35 +000067 if (is_clang) {
68 # Suppress warnings from Chrome's Clang plugins.
69 # See http://code.google.com/p/webrtc/issues/detail?id=163 for details.
70 configs -= [ "//build/config/clang:find_bad_constructs" ]
71 }
72
kjellander@webrtc.org3610f632014-06-23 19:21:07 +000073 deps = [
74 ":video_coding_utility",
75 ":webrtc_i420",
76 ":webrtc_vp8",
77 "../../common_video",
78 "../../system_wrappers",
79 ]
80}
81
82source_set("video_coding_utility") {
stefan@webrtc.org857f9342014-07-07 11:46:43 +000083 sources = [
stefan@webrtc.org857f9342014-07-07 11:46:43 +000084 "utility/include/frame_dropper.h",
85 "utility/frame_dropper.cc",
86 ]
87
kjellander@webrtc.org5a2b2f12014-08-25 14:15:35 +000088 if (is_clang) {
89 # Suppress warnings from Chrome's Clang plugins.
90 # See http://code.google.com/p/webrtc/issues/detail?id=163 for details.
91 configs -= [ "//build/config/clang:find_bad_constructs" ]
92 }
93
stefan@webrtc.org857f9342014-07-07 11:46:43 +000094 deps = [ "../../system_wrappers" ]
kjellander@webrtc.org3610f632014-06-23 19:21:07 +000095}
96
97source_set("webrtc_i420") {
stefan@webrtc.org857f9342014-07-07 11:46:43 +000098 sources = [
99 "codecs/i420/main/source/i420.cc",
100 "codecs/i420/main/interface/i420.h",
101 ]
102
kjellander@webrtc.org5a2b2f12014-08-25 14:15:35 +0000103 if (is_clang) {
104 # Suppress warnings from Chrome's Clang plugins.
105 # See http://code.google.com/p/webrtc/issues/detail?id=163 for details.
106 configs -= [ "//build/config/clang:find_bad_constructs" ]
107 }
108
stefan@webrtc.org857f9342014-07-07 11:46:43 +0000109 deps = [ "../../system_wrappers" ]
kjellander@webrtc.org3610f632014-06-23 19:21:07 +0000110}
111
stefan@webrtc.org857f9342014-07-07 11:46:43 +0000112# TODO(holmer): Some files below has been commented out since libvpx is still
113# missing a BUILD.gn file.
kjellander@webrtc.org3610f632014-06-23 19:21:07 +0000114source_set("webrtc_vp8") {
stefan@webrtc.org857f9342014-07-07 11:46:43 +0000115 sources = [
116# "codecs/vp8/default_temporal_layers.cc",
117# "codecs/vp8/default_temporal_layers.h",
118# "codecs/vp8/realtime_temporal_layers.cc",
119# "codecs/vp8/reference_picture_selection.cc",
120# "codecs/vp8/reference_picture_selection.h",
121 "codecs/vp8/include/vp8.h",
122 "codecs/vp8/include/vp8_common_types.h",
123 "codecs/vp8/temporal_layers.h",
124 "codecs/vp8/vp8_factory.cc",
125# "codecs/vp8/vp8_impl.cc",
126# "codecs/vp8/vp8_impl.h",
127 ]
kjellander@webrtc.org5a2b2f12014-08-25 14:15:35 +0000128
129 if (is_clang) {
130 # Suppress warnings from Chrome's Clang plugins.
131 # See http://code.google.com/p/webrtc/issues/detail?id=163 for details.
132 configs -= [ "//build/config/clang:find_bad_constructs" ]
133 }
134
stefan@webrtc.org857f9342014-07-07 11:46:43 +0000135 deps = [
136 ":video_coding_utility",
137 "../../common_video",
138 "../../system_wrappers",
139 ]
140# if (build_libvpx) {
141# deps += [
142# "//third_party/libvpx",
143# ]
144# }
kjellander@webrtc.org3610f632014-06-23 19:21:07 +0000145}