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

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

Issue 1440873005: modules/video_coding/utility: Remove include (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Fix after rebase mistake Created 5 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 76 matching lines...) Expand 10 before | Expand all | Expand 10 after
87 ":webrtc_vp9", 87 ":webrtc_vp9",
88 "../..:webrtc_common", 88 "../..:webrtc_common",
89 "../../common_video", 89 "../../common_video",
90 "../../system_wrappers", 90 "../../system_wrappers",
91 ] 91 ]
92 } 92 }
93 93
94 source_set("video_coding_utility") { 94 source_set("video_coding_utility") {
95 sources = [ 95 sources = [
96 "utility/frame_dropper.cc", 96 "utility/frame_dropper.cc",
97 "utility/include/frame_dropper.h", 97 "utility/frame_dropper.h",
98 "utility/include/moving_average.h", 98 "utility/moving_average.h",
99 "utility/include/qp_parser.h",
100 "utility/include/quality_scaler.h",
101 "utility/include/vp8_header_parser.h",
102 "utility/qp_parser.cc", 99 "utility/qp_parser.cc",
100 "utility/qp_parser.h",
103 "utility/quality_scaler.cc", 101 "utility/quality_scaler.cc",
102 "utility/quality_scaler.h",
104 "utility/vp8_header_parser.cc", 103 "utility/vp8_header_parser.cc",
104 "utility/vp8_header_parser.h",
105 ] 105 ]
106 106
107 configs += [ "../..:common_config" ] 107 configs += [ "../..:common_config" ]
108 public_configs = [ "../..:common_inherited_config" ] 108 public_configs = [ "../..:common_inherited_config" ]
109 109
110 if (is_clang) { 110 if (is_clang) {
111 # Suppress warnings from Chrome's Clang plugins. 111 # Suppress warnings from Chrome's Clang plugins.
112 # See http://code.google.com/p/webrtc/issues/detail?id=163 for details. 112 # See http://code.google.com/p/webrtc/issues/detail?id=163 for details.
113 configs -= [ "//build/config/clang:find_bad_constructs" ] 113 configs -= [ "//build/config/clang:find_bad_constructs" ]
114 } 114 }
(...skipping 115 matching lines...) Expand 10 before | Expand all | Expand 10 after
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 }
OLDNEW
« no previous file with comments | « talk/app/webrtc/java/jni/androidmediaencoder_jni.cc ('k') | webrtc/modules/video_coding/codecs/vp8/screenshare_layers.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698