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

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

Issue 2931273002: Split rtc_task_queue target. Add separate target for sequenced_task_checker and weak_ptr. (Closed)
Patch Set: Split rtc_task_queue_unittests library as well. Created 3 years, 6 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/rtp_rtcp/BUILD.gn ('k') | webrtc/sdk/android/BUILD.gn » ('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("../../webrtc.gni") 9 import("../../webrtc.gni")
10 10
(...skipping 83 matching lines...) Expand 10 before | Expand all | Expand 10 after
94 ":webrtc_i420", 94 ":webrtc_i420",
95 ":webrtc_vp8", 95 ":webrtc_vp8",
96 ":webrtc_vp9", 96 ":webrtc_vp9",
97 "..:module_api", 97 "..:module_api",
98 "../..:video_stream_api", 98 "../..:video_stream_api",
99 "../..:webrtc_common", 99 "../..:webrtc_common",
100 "../../base:rtc_base", 100 "../../base:rtc_base",
101 "../../base:rtc_base_approved", 101 "../../base:rtc_base_approved",
102 "../../base:rtc_numerics", 102 "../../base:rtc_numerics",
103 "../../base:rtc_task_queue", 103 "../../base:rtc_task_queue",
104 "../../base:sequenced_task_checker",
104 "../../common_video", 105 "../../common_video",
105 "../../system_wrappers", 106 "../../system_wrappers",
106 "../rtp_rtcp:rtp_rtcp", 107 "../rtp_rtcp:rtp_rtcp",
107 "../utility:utility", 108 "../utility:utility",
108 ] 109 ]
109 } 110 }
110 111
111 rtc_static_library("video_coding_utility") { 112 rtc_static_library("video_coding_utility") {
112 sources = [ 113 sources = [
113 "utility/default_video_bitrate_allocator.cc", 114 "utility/default_video_bitrate_allocator.cc",
(...skipping 17 matching lines...) Expand all
131 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] 132 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ]
132 } 133 }
133 134
134 deps = [ 135 deps = [
135 "..:module_api", 136 "..:module_api",
136 "../..:webrtc_common", 137 "../..:webrtc_common",
137 "../../api/video_codecs:video_codecs_api", 138 "../../api/video_codecs:video_codecs_api",
138 "../../base:rtc_base_approved", 139 "../../base:rtc_base_approved",
139 "../../base:rtc_numerics", 140 "../../base:rtc_numerics",
140 "../../base:rtc_task_queue", 141 "../../base:rtc_task_queue",
142 "../../base:sequenced_task_checker",
141 "../../common_video", 143 "../../common_video",
142 "../../modules/rtp_rtcp:rtp_rtcp", 144 "../../modules/rtp_rtcp:rtp_rtcp",
143 "../../system_wrappers", 145 "../../system_wrappers",
144 ] 146 ]
145 } 147 }
146 148
147 rtc_static_library("webrtc_h264") { 149 rtc_static_library("webrtc_h264") {
148 sources = [ 150 sources = [
149 "codecs/h264/h264.cc", 151 "codecs/h264/h264.cc",
150 "codecs/h264/include/h264.h", 152 "codecs/h264/include/h264.h",
(...skipping 75 matching lines...) Expand 10 before | Expand all | Expand 10 after
226 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). 228 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163).
227 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] 229 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ]
228 } 230 }
229 231
230 deps = [ 232 deps = [
231 ":video_coding_utility", 233 ":video_coding_utility",
232 "..:module_api", 234 "..:module_api",
233 "../..:webrtc_common", 235 "../..:webrtc_common",
234 "../../api/video_codecs:video_codecs_api", 236 "../../api/video_codecs:video_codecs_api",
235 "../../base:rtc_base_approved", 237 "../../base:rtc_base_approved",
236 "../../base:rtc_task_queue", 238 "../../base:sequenced_task_checker",
237 "../../common_video", 239 "../../common_video",
238 "../../system_wrappers", 240 "../../system_wrappers",
239 ] 241 ]
240 if (rtc_build_libvpx) { 242 if (rtc_build_libvpx) {
241 deps += [ rtc_libvpx_dir ] 243 deps += [ rtc_libvpx_dir ]
242 } 244 }
243 } 245 }
244 246
245 rtc_static_library("webrtc_vp9") { 247 rtc_static_library("webrtc_vp9") {
246 if (rtc_libvpx_build_vp9) { 248 if (rtc_libvpx_build_vp9) {
(...skipping 331 matching lines...) Expand 10 before | Expand all | Expand 10 after
578 } 580 }
579 581
580 # TODO(jschuh): bugs.webrtc.org/1348: fix this warning. 582 # TODO(jschuh): bugs.webrtc.org/1348: fix this warning.
581 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] 583 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ]
582 if (!build_with_chromium && is_clang) { 584 if (!build_with_chromium && is_clang) {
583 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). 585 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163).
584 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] 586 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ]
585 } 587 }
586 } 588 }
587 } 589 }
OLDNEW
« no previous file with comments | « webrtc/modules/rtp_rtcp/BUILD.gn ('k') | webrtc/sdk/android/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698