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 |
(...skipping 13 matching lines...) Expand all Loading... |
24 "frame_buffer2.cc", | 24 "frame_buffer2.cc", |
25 "frame_buffer2.h", | 25 "frame_buffer2.h", |
26 "frame_object.cc", | 26 "frame_object.cc", |
27 "frame_object.h", | 27 "frame_object.h", |
28 "generic_decoder.cc", | 28 "generic_decoder.cc", |
29 "generic_decoder.h", | 29 "generic_decoder.h", |
30 "generic_encoder.cc", | 30 "generic_encoder.cc", |
31 "generic_encoder.h", | 31 "generic_encoder.h", |
32 "histogram.cc", | 32 "histogram.cc", |
33 "histogram.h", | 33 "histogram.h", |
| 34 "include/video_codec_initializer.h", |
34 "include/video_coding.h", | 35 "include/video_coding.h", |
35 "include/video_coding_defines.h", | 36 "include/video_coding_defines.h", |
36 "inter_frame_delay.cc", | 37 "inter_frame_delay.cc", |
37 "inter_frame_delay.h", | 38 "inter_frame_delay.h", |
38 "internal_defines.h", | 39 "internal_defines.h", |
39 "jitter_buffer.cc", | 40 "jitter_buffer.cc", |
40 "jitter_buffer.h", | 41 "jitter_buffer.h", |
41 "jitter_buffer_common.h", | 42 "jitter_buffer_common.h", |
42 "jitter_estimator.cc", | 43 "jitter_estimator.cc", |
43 "jitter_estimator.h", | 44 "jitter_estimator.h", |
(...skipping 17 matching lines...) Expand all Loading... |
61 "rtp_frame_reference_finder.cc", | 62 "rtp_frame_reference_finder.cc", |
62 "rtp_frame_reference_finder.h", | 63 "rtp_frame_reference_finder.h", |
63 "rtt_filter.cc", | 64 "rtt_filter.cc", |
64 "rtt_filter.h", | 65 "rtt_filter.h", |
65 "session_info.cc", | 66 "session_info.cc", |
66 "session_info.h", | 67 "session_info.h", |
67 "timestamp_map.cc", | 68 "timestamp_map.cc", |
68 "timestamp_map.h", | 69 "timestamp_map.h", |
69 "timing.cc", | 70 "timing.cc", |
70 "timing.h", | 71 "timing.h", |
| 72 "video_codec_initializer.cc", |
71 "video_coding_impl.cc", | 73 "video_coding_impl.cc", |
72 "video_coding_impl.h", | 74 "video_coding_impl.h", |
73 "video_receiver.cc", | 75 "video_receiver.cc", |
74 "video_sender.cc", | 76 "video_sender.cc", |
75 ] | 77 ] |
76 | 78 |
77 # TODO(jschuh): Bug 1348: fix this warning. | 79 # TODO(jschuh): Bug 1348: fix this warning. |
78 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] | 80 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] |
79 | 81 |
80 if (!build_with_chromium && is_clang) { | 82 if (!build_with_chromium && is_clang) { |
81 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). | 83 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). |
82 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] | 84 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] |
83 } | 85 } |
84 | 86 |
85 deps = [ | 87 deps = [ |
86 ":video_coding_utility", | 88 ":video_coding_utility", |
87 ":webrtc_h264", | 89 ":webrtc_h264", |
88 ":webrtc_i420", | 90 ":webrtc_i420", |
89 ":webrtc_vp8", | 91 ":webrtc_vp8", |
90 ":webrtc_vp9", | 92 ":webrtc_vp9", |
91 "../..:webrtc_common", | 93 "../..:webrtc_common", |
92 "../../common_video", | 94 "../../common_video", |
93 "../../system_wrappers", | 95 "../../system_wrappers", |
94 ] | 96 ] |
95 } | 97 } |
96 | 98 |
97 rtc_static_library("video_coding_utility") { | 99 rtc_static_library("video_coding_utility") { |
98 sources = [ | 100 sources = [ |
| 101 "utility/default_video_bitrate_allocator.cc", |
| 102 "utility/default_video_bitrate_allocator.h", |
99 "utility/frame_dropper.cc", | 103 "utility/frame_dropper.cc", |
100 "utility/frame_dropper.h", | 104 "utility/frame_dropper.h", |
101 "utility/ivf_file_writer.cc", | 105 "utility/ivf_file_writer.cc", |
102 "utility/ivf_file_writer.h", | 106 "utility/ivf_file_writer.h", |
103 "utility/moving_average.cc", | 107 "utility/moving_average.cc", |
104 "utility/moving_average.h", | 108 "utility/moving_average.h", |
105 "utility/qp_parser.cc", | 109 "utility/qp_parser.cc", |
106 "utility/qp_parser.h", | 110 "utility/qp_parser.h", |
107 "utility/quality_scaler.cc", | 111 "utility/quality_scaler.cc", |
108 "utility/quality_scaler.h", | 112 "utility/quality_scaler.h", |
(...skipping 211 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
320 if (!build_with_chromium && is_clang) { | 324 if (!build_with_chromium && is_clang) { |
321 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). | 325 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). |
322 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] | 326 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] |
323 } | 327 } |
324 | 328 |
325 deps = [ | 329 deps = [ |
326 "../../test:test_support", | 330 "../../test:test_support", |
327 ] | 331 ] |
328 } | 332 } |
329 } | 333 } |
OLD | NEW |