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

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

Issue 2474993002: Pass selected cricket::VideoCodec down to internal H264 encoder (Closed)
Patch Set: Fix. 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
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 74 matching lines...) Expand 10 before | Expand all | Expand 10 after
85 } 85 }
86 86
87 deps = [ 87 deps = [
88 ":video_coding_utility", 88 ":video_coding_utility",
89 ":webrtc_h264", 89 ":webrtc_h264",
90 ":webrtc_i420", 90 ":webrtc_i420",
91 ":webrtc_vp8", 91 ":webrtc_vp8",
92 ":webrtc_vp9", 92 ":webrtc_vp9",
93 "../..:webrtc_common", 93 "../..:webrtc_common",
94 "../../common_video", 94 "../../common_video",
95 "../../media:rtc_media_base",
95 "../../system_wrappers", 96 "../../system_wrappers",
96 ] 97 ]
97 } 98 }
98 99
99 rtc_static_library("video_coding_utility") { 100 rtc_static_library("video_coding_utility") {
100 sources = [ 101 sources = [
101 "utility/frame_dropper.cc", 102 "utility/frame_dropper.cc",
102 "utility/frame_dropper.h", 103 "utility/frame_dropper.h",
103 "utility/ivf_file_writer.cc", 104 "utility/ivf_file_writer.cc",
104 "utility/ivf_file_writer.h", 105 "utility/ivf_file_writer.h",
(...skipping 217 matching lines...) Expand 10 before | Expand all | Expand 10 after
322 if (!build_with_chromium && is_clang) { 323 if (!build_with_chromium && is_clang) {
323 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). 324 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163).
324 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] 325 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ]
325 } 326 }
326 327
327 deps = [ 328 deps = [
328 "../../test:test_support", 329 "../../test:test_support",
329 ] 330 ]
330 } 331 }
331 } 332 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698