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

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

Issue 1914893005: Move BitrateAdjuster into common_video (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Created 4 years, 7 months 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/modules.gyp ('k') | webrtc/modules/video_coding/bitrate_adjuster.cc » ('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_coding") { 11 source_set("video_coding") {
12 sources = [ 12 sources = [
13 "bitrate_adjuster.cc",
14 "bitrate_adjuster.h",
15 "codec_database.cc", 13 "codec_database.cc",
16 "codec_database.h", 14 "codec_database.h",
17 "codec_timer.cc", 15 "codec_timer.cc",
18 "codec_timer.h", 16 "codec_timer.h",
19 "content_metrics_processing.cc", 17 "content_metrics_processing.cc",
20 "content_metrics_processing.h", 18 "content_metrics_processing.h",
21 "decoding_state.cc", 19 "decoding_state.cc",
22 "decoding_state.h", 20 "decoding_state.h",
23 "encoded_frame.cc", 21 "encoded_frame.cc",
24 "encoded_frame.h", 22 "encoded_frame.h",
(...skipping 236 matching lines...) Expand 10 before | Expand all | Expand 10 after
261 259
262 deps = [ 260 deps = [
263 ":video_coding_utility", 261 ":video_coding_utility",
264 "../../common_video", 262 "../../common_video",
265 "../../system_wrappers", 263 "../../system_wrappers",
266 ] 264 ]
267 if (rtc_build_libvpx) { 265 if (rtc_build_libvpx) {
268 deps += [ rtc_libvpx_dir ] 266 deps += [ rtc_libvpx_dir ]
269 } 267 }
270 } 268 }
OLDNEW
« no previous file with comments | « webrtc/modules/modules.gyp ('k') | webrtc/modules/video_coding/bitrate_adjuster.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698