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_coding") { | 11 source_set("video_coding") { |
12 sources = [ | 12 sources = [ |
13 "main/interface/video_coding.h", | 13 "codec_database.cc", |
14 "main/interface/video_coding_defines.h", | 14 "codec_database.h", |
15 "main/source/codec_database.cc", | 15 "codec_timer.cc", |
16 "main/source/codec_database.h", | 16 "codec_timer.h", |
17 "main/source/codec_timer.cc", | 17 "content_metrics_processing.cc", |
18 "main/source/codec_timer.h", | 18 "content_metrics_processing.h", |
19 "main/source/content_metrics_processing.cc", | 19 "decoding_state.cc", |
20 "main/source/content_metrics_processing.h", | 20 "decoding_state.h", |
21 "main/source/decoding_state.cc", | 21 "encoded_frame.cc", |
22 "main/source/decoding_state.h", | 22 "encoded_frame.h", |
23 "main/source/encoded_frame.cc", | 23 "fec_tables_xor.h", |
24 "main/source/encoded_frame.h", | 24 "frame_buffer.cc", |
25 "main/source/fec_tables_xor.h", | 25 "frame_buffer.h", |
26 "main/source/frame_buffer.cc", | 26 "generic_decoder.cc", |
27 "main/source/frame_buffer.h", | 27 "generic_decoder.h", |
28 "main/source/generic_decoder.cc", | 28 "generic_encoder.cc", |
29 "main/source/generic_decoder.h", | 29 "generic_encoder.h", |
30 "main/source/generic_encoder.cc", | 30 "include/video_coding.h", |
31 "main/source/generic_encoder.h", | 31 "include/video_coding_defines.h", |
32 "main/source/inter_frame_delay.cc", | 32 "inter_frame_delay.cc", |
33 "main/source/inter_frame_delay.h", | 33 "inter_frame_delay.h", |
34 "main/source/internal_defines.h", | 34 "internal_defines.h", |
35 "main/source/jitter_buffer.cc", | 35 "jitter_buffer.cc", |
36 "main/source/jitter_buffer.h", | 36 "jitter_buffer.h", |
37 "main/source/jitter_buffer_common.h", | 37 "jitter_buffer_common.h", |
38 "main/source/jitter_estimator.cc", | 38 "jitter_estimator.cc", |
39 "main/source/jitter_estimator.h", | 39 "jitter_estimator.h", |
40 "main/source/media_opt_util.cc", | 40 "media_opt_util.cc", |
41 "main/source/media_opt_util.h", | 41 "media_opt_util.h", |
42 "main/source/media_optimization.cc", | 42 "media_optimization.cc", |
43 "main/source/media_optimization.h", | 43 "media_optimization.h", |
44 "main/source/nack_fec_tables.h", | 44 "nack_fec_tables.h", |
45 "main/source/packet.cc", | 45 "packet.cc", |
46 "main/source/packet.h", | 46 "packet.h", |
47 "main/source/qm_select.cc", | 47 "qm_select.cc", |
48 "main/source/qm_select.h", | 48 "qm_select.h", |
49 "main/source/qm_select_data.h", | 49 "qm_select_data.h", |
50 "main/source/receiver.cc", | 50 "receiver.cc", |
51 "main/source/receiver.h", | 51 "receiver.h", |
52 "main/source/rtt_filter.cc", | 52 "rtt_filter.cc", |
53 "main/source/rtt_filter.h", | 53 "rtt_filter.h", |
54 "main/source/session_info.cc", | 54 "session_info.cc", |
55 "main/source/session_info.h", | 55 "session_info.h", |
56 "main/source/timestamp_map.cc", | 56 "timestamp_map.cc", |
57 "main/source/timestamp_map.h", | 57 "timestamp_map.h", |
58 "main/source/timing.cc", | 58 "timing.cc", |
59 "main/source/timing.h", | 59 "timing.h", |
60 "main/source/video_coding_impl.cc", | 60 "video_coding_impl.cc", |
61 "main/source/video_coding_impl.h", | 61 "video_coding_impl.h", |
62 "main/source/video_receiver.cc", | 62 "video_receiver.cc", |
63 "main/source/video_sender.cc", | 63 "video_sender.cc", |
64 ] | 64 ] |
65 | 65 |
66 configs += [ "../..:common_config" ] | 66 configs += [ "../..:common_config" ] |
67 public_configs = [ "../..:common_inherited_config" ] | 67 public_configs = [ "../..:common_inherited_config" ] |
68 | 68 |
69 if (is_win) { | 69 if (is_win) { |
70 cflags = [ | 70 cflags = [ |
71 # TODO(jschuh): Bug 1348: fix this warning. | 71 # TODO(jschuh): Bug 1348: fix this warning. |
72 "/wd4267", # size_t to int truncation. | 72 "/wd4267", # size_t to int truncation. |
73 ] | 73 ] |
(...skipping 156 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
230 | 230 |
231 deps = [ | 231 deps = [ |
232 ":video_coding_utility", | 232 ":video_coding_utility", |
233 "../../common_video", | 233 "../../common_video", |
234 "../../system_wrappers", | 234 "../../system_wrappers", |
235 ] | 235 ] |
236 if (rtc_build_libvpx) { | 236 if (rtc_build_libvpx) { |
237 deps += [ rtc_libvpx_dir ] | 237 deps += [ rtc_libvpx_dir ] |
238 } | 238 } |
239 } | 239 } |
OLD | NEW |