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

Side by Side Diff: webrtc/modules/video_coding/BUILD.gn

Issue 2510583002: Reland #2 of Issue 2434073003: Extract bitrate allocation ... (Closed)
Patch Set: Addressed comments Created 4 years, 1 month 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/modules/BUILD.gn ('k') | webrtc/modules/video_coding/codecs/h264/h264_encoder_impl.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
(...skipping 15 matching lines...) Expand all
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 "h264_sps_pps_tracker.cc", 32 "h264_sps_pps_tracker.cc",
33 "h264_sps_pps_tracker.h", 33 "h264_sps_pps_tracker.h",
34 "histogram.cc", 34 "histogram.cc",
35 "histogram.h", 35 "histogram.h",
36 "include/video_codec_initializer.h",
36 "include/video_coding.h", 37 "include/video_coding.h",
37 "include/video_coding_defines.h", 38 "include/video_coding_defines.h",
38 "inter_frame_delay.cc", 39 "inter_frame_delay.cc",
39 "inter_frame_delay.h", 40 "inter_frame_delay.h",
40 "internal_defines.h", 41 "internal_defines.h",
41 "jitter_buffer.cc", 42 "jitter_buffer.cc",
42 "jitter_buffer.h", 43 "jitter_buffer.h",
43 "jitter_buffer_common.h", 44 "jitter_buffer_common.h",
44 "jitter_estimator.cc", 45 "jitter_estimator.cc",
45 "jitter_estimator.h", 46 "jitter_estimator.h",
(...skipping 17 matching lines...) Expand all
63 "rtp_frame_reference_finder.cc", 64 "rtp_frame_reference_finder.cc",
64 "rtp_frame_reference_finder.h", 65 "rtp_frame_reference_finder.h",
65 "rtt_filter.cc", 66 "rtt_filter.cc",
66 "rtt_filter.h", 67 "rtt_filter.h",
67 "session_info.cc", 68 "session_info.cc",
68 "session_info.h", 69 "session_info.h",
69 "timestamp_map.cc", 70 "timestamp_map.cc",
70 "timestamp_map.h", 71 "timestamp_map.h",
71 "timing.cc", 72 "timing.cc",
72 "timing.h", 73 "timing.h",
74 "video_codec_initializer.cc",
73 "video_coding_impl.cc", 75 "video_coding_impl.cc",
74 "video_coding_impl.h", 76 "video_coding_impl.h",
75 "video_receiver.cc", 77 "video_receiver.cc",
76 "video_sender.cc", 78 "video_sender.cc",
77 ] 79 ]
78 80
79 # TODO(jschuh): Bug 1348: fix this warning. 81 # TODO(jschuh): Bug 1348: fix this warning.
80 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] 82 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ]
81 83
82 if (!build_with_chromium && is_clang) { 84 if (!build_with_chromium && is_clang) {
83 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). 85 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163).
84 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] 86 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ]
85 } 87 }
86 88
87 deps = [ 89 deps = [
88 ":video_coding_utility", 90 ":video_coding_utility",
89 ":webrtc_h264", 91 ":webrtc_h264",
90 ":webrtc_i420", 92 ":webrtc_i420",
91 ":webrtc_vp8", 93 ":webrtc_vp8",
92 ":webrtc_vp9", 94 ":webrtc_vp9",
93 "../..:webrtc_common", 95 "../..:webrtc_common",
94 "../../common_video", 96 "../../common_video",
95 "../../system_wrappers", 97 "../../system_wrappers",
96 ] 98 ]
97 } 99 }
98 100
99 rtc_static_library("video_coding_utility") { 101 rtc_static_library("video_coding_utility") {
100 sources = [ 102 sources = [
103 "utility/default_video_bitrate_allocator.cc",
104 "utility/default_video_bitrate_allocator.h",
101 "utility/frame_dropper.cc", 105 "utility/frame_dropper.cc",
102 "utility/frame_dropper.h", 106 "utility/frame_dropper.h",
103 "utility/ivf_file_writer.cc", 107 "utility/ivf_file_writer.cc",
104 "utility/ivf_file_writer.h", 108 "utility/ivf_file_writer.h",
105 "utility/moving_average.cc", 109 "utility/moving_average.cc",
106 "utility/moving_average.h", 110 "utility/moving_average.h",
107 "utility/qp_parser.cc", 111 "utility/qp_parser.cc",
108 "utility/qp_parser.h", 112 "utility/qp_parser.h",
109 "utility/quality_scaler.cc", 113 "utility/quality_scaler.cc",
110 "utility/quality_scaler.h", 114 "utility/quality_scaler.h",
(...skipping 152 matching lines...) Expand 10 before | Expand all | Expand 10 after
263 if (!build_with_chromium && is_clang) { 267 if (!build_with_chromium && is_clang) {
264 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). 268 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163).
265 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] 269 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ]
266 } 270 }
267 271
268 deps = [ 272 deps = [
269 "../../test:test_support", 273 "../../test:test_support",
270 ] 274 ]
271 } 275 }
272 } 276 }
OLDNEW
« no previous file with comments | « webrtc/modules/BUILD.gn ('k') | webrtc/modules/video_coding/codecs/h264/h264_encoder_impl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698