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

Side by Side Diff: webrtc/video/BUILD.gn

Issue 2976293002: Remove remains of webrtc/base (Closed)
Patch Set: Add README.md Created 3 years, 5 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/test/fuzzers/BUILD.gn ('k') | webrtc/voice_engine/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 40 matching lines...) Expand 10 before | Expand all | Expand 10 after
51 if (!build_with_chromium && is_clang) { 51 if (!build_with_chromium && is_clang) {
52 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). 52 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163).
53 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] 53 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ]
54 } 54 }
55 55
56 deps = [ 56 deps = [
57 "..:video_stream_api", 57 "..:video_stream_api",
58 "..:webrtc_common", 58 "..:webrtc_common",
59 "../api:transport_api", 59 "../api:transport_api",
60 "../api/video_codecs:video_codecs_api", 60 "../api/video_codecs:video_codecs_api",
61 "../base:rtc_base_approved",
62 "../base:rtc_numerics",
63 "../base:rtc_task_queue",
64 "../base:sequenced_task_checker",
65 "../base:weak_ptr",
66 "../call:call_interfaces", 61 "../call:call_interfaces",
67 "../call:rtp_interfaces", 62 "../call:rtp_interfaces",
68 "../common_video", 63 "../common_video",
69 "../logging:rtc_event_log_api", 64 "../logging:rtc_event_log_api",
70 "../media:rtc_media_base", 65 "../media:rtc_media_base",
71 "../modules:module_api", 66 "../modules:module_api",
72 "../modules/bitrate_controller", 67 "../modules/bitrate_controller",
73 "../modules/congestion_controller", 68 "../modules/congestion_controller",
74 "../modules/pacing", 69 "../modules/pacing",
75 "../modules/remote_bitrate_estimator", 70 "../modules/remote_bitrate_estimator",
76 "../modules/rtp_rtcp", 71 "../modules/rtp_rtcp",
77 "../modules/utility", 72 "../modules/utility",
78 "../modules/video_coding", 73 "../modules/video_coding",
79 "../modules/video_coding:video_coding_utility", 74 "../modules/video_coding:video_coding_utility",
80 "../modules/video_coding:webrtc_vp8", 75 "../modules/video_coding:webrtc_vp8",
81 "../modules/video_processing", 76 "../modules/video_processing",
77 "../rtc_base:rtc_base_approved",
78 "../rtc_base:rtc_numerics",
79 "../rtc_base:rtc_task_queue",
80 "../rtc_base:sequenced_task_checker",
81 "../rtc_base:weak_ptr",
82 "../system_wrappers", 82 "../system_wrappers",
83 "../voice_engine", 83 "../voice_engine",
84 ] 84 ]
85 } 85 }
86 86
87 if (rtc_include_tests) { 87 if (rtc_include_tests) {
88 rtc_source_set("video_quality_test") { 88 rtc_source_set("video_quality_test") {
89 testonly = true 89 testonly = true
90 visibility = [ ":*" ] # Only targets in this file can depend on this. 90 visibility = [ ":*" ] # Only targets in this file can depend on this.
91 sources = [ 91 sources = [
92 "video_quality_test.cc", 92 "video_quality_test.cc",
93 "video_quality_test.h", 93 "video_quality_test.h",
94 ] 94 ]
95 deps = [ 95 deps = [
96 "../base:rtc_base_tests_utils",
97 "../base:rtc_task_queue",
98 "../call:call_interfaces", 96 "../call:call_interfaces",
99 "../common_video", 97 "../common_video",
100 "../logging:rtc_event_log_api", 98 "../logging:rtc_event_log_api",
101 "../media:rtc_media", 99 "../media:rtc_media",
102 "../media:rtc_media_base", 100 "../media:rtc_media_base",
103 "../modules/audio_mixer:audio_mixer_impl", 101 "../modules/audio_mixer:audio_mixer_impl",
104 "../modules/rtp_rtcp", 102 "../modules/rtp_rtcp",
105 "../modules/video_coding:webrtc_h264", 103 "../modules/video_coding:webrtc_h264",
106 "../modules/video_coding:webrtc_vp8", 104 "../modules/video_coding:webrtc_vp8",
107 "../modules/video_coding:webrtc_vp9", 105 "../modules/video_coding:webrtc_vp9",
106 "../rtc_base:rtc_base_tests_utils",
107 "../rtc_base:rtc_task_queue",
108 "../system_wrappers", 108 "../system_wrappers",
109 "../test:test_common", 109 "../test:test_common",
110 "../test:test_renderer", 110 "../test:test_renderer",
111 "../test:test_support", 111 "../test:test_support",
112 "../test:video_test_common", 112 "../test:video_test_common",
113 "../voice_engine", 113 "../voice_engine",
114 "//testing/gtest", 114 "//testing/gtest",
115 "//webrtc/test:rtp_test_utils", 115 "//webrtc/test:rtp_test_utils",
116 "//webrtc/test:test_renderer", 116 "//webrtc/test:test_renderer",
117 "//webrtc/test:video_test_common", 117 "//webrtc/test:video_test_common",
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after
151 } 151 }
152 } 152 }
153 153
154 rtc_executable("video_loopback") { 154 rtc_executable("video_loopback") {
155 testonly = true 155 testonly = true
156 sources = [ 156 sources = [
157 "video_loopback.cc", 157 "video_loopback.cc",
158 ] 158 ]
159 deps = [ 159 deps = [
160 ":video_quality_test", 160 ":video_quality_test",
161 "../base:rtc_base_approved", 161 "../rtc_base:rtc_base_approved",
162 "../system_wrappers:metrics_default", 162 "../system_wrappers:metrics_default",
163 "../test:field_trial", 163 "../test:field_trial",
164 "../test:run_test", 164 "../test:run_test",
165 "../test:test_common", 165 "../test:test_common",
166 "../test:test_renderer", 166 "../test:test_renderer",
167 "../test:test_support", 167 "../test:test_support",
168 "//testing/gmock", 168 "//testing/gmock",
169 "//testing/gtest", 169 "//testing/gtest",
170 "//third_party/gflags", 170 "//third_party/gflags",
171 ] 171 ]
172 if (!build_with_chromium && is_clang) { 172 if (!build_with_chromium && is_clang) {
173 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). 173 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163).
174 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] 174 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ]
175 } 175 }
176 } 176 }
177 177
178 rtc_executable("screenshare_loopback") { 178 rtc_executable("screenshare_loopback") {
179 testonly = true 179 testonly = true
180 sources = [ 180 sources = [
181 "screenshare_loopback.cc", 181 "screenshare_loopback.cc",
182 ] 182 ]
183 183
184 deps = [ 184 deps = [
185 ":video_quality_test", 185 ":video_quality_test",
186 "../base:rtc_base_approved", 186 "../rtc_base:rtc_base_approved",
187 "../system_wrappers:metrics_default", 187 "../system_wrappers:metrics_default",
188 "../test:field_trial", 188 "../test:field_trial",
189 "../test:run_test", 189 "../test:run_test",
190 "../test:test_common", 190 "../test:test_common",
191 "../test:test_renderer", 191 "../test:test_renderer",
192 "../test:test_support", 192 "../test:test_support",
193 ] 193 ]
194 if (!build_with_chromium && is_clang) { 194 if (!build_with_chromium && is_clang) {
195 # Suppress warnings from Chrome's Clang plugins. 195 # Suppress warnings from Chrome's Clang plugins.
196 # See http://code.google.com/p/webrtc/issues/detail?id=163 for details. 196 # See http://code.google.com/p/webrtc/issues/detail?id=163 for details.
197 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] 197 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ]
198 } 198 }
199 } 199 }
200 200
201 rtc_executable("video_replay") { 201 rtc_executable("video_replay") {
202 testonly = true 202 testonly = true
203 sources = [ 203 sources = [
204 "replay.cc", 204 "replay.cc",
205 ] 205 ]
206 deps = [ 206 deps = [
207 "..:webrtc_common", 207 "..:webrtc_common",
208 "../api/video_codecs:video_codecs_api", 208 "../api/video_codecs:video_codecs_api",
209 "../base:rtc_base_approved",
210 "../call:call_interfaces", 209 "../call:call_interfaces",
211 "../common_video", 210 "../common_video",
212 "../logging:rtc_event_log_api", 211 "../logging:rtc_event_log_api",
213 "../modules/rtp_rtcp", 212 "../modules/rtp_rtcp",
213 "../rtc_base:rtc_base_approved",
214 "../system_wrappers", 214 "../system_wrappers",
215 "../system_wrappers:metrics_default", 215 "../system_wrappers:metrics_default",
216 "../test:field_trial", 216 "../test:field_trial",
217 "../test:rtp_test_utils", 217 "../test:rtp_test_utils",
218 "../test:run_test", 218 "../test:run_test",
219 "../test:test_common", 219 "../test:test_common",
220 "../test:test_renderer", 220 "../test:test_renderer",
221 "../test:test_support", 221 "../test:test_support",
222 "../test:video_test_common", 222 "../test:video_test_common",
223 "//third_party/gflags", 223 "//third_party/gflags",
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after
256 "stream_synchronization_unittest.cc", 256 "stream_synchronization_unittest.cc",
257 "video_receive_stream_unittest.cc", 257 "video_receive_stream_unittest.cc",
258 "video_send_stream_tests.cc", 258 "video_send_stream_tests.cc",
259 "vie_encoder_unittest.cc", 259 "vie_encoder_unittest.cc",
260 ] 260 ]
261 deps = [ 261 deps = [
262 ":video", 262 ":video",
263 "..:video_stream_api", 263 "..:video_stream_api",
264 "../api:video_frame_api", 264 "../api:video_frame_api",
265 "../api/video_codecs:video_codecs_api", 265 "../api/video_codecs:video_codecs_api",
266 "../base:rtc_base_approved",
267 "../base:rtc_base_tests_utils",
268 "../call:call_interfaces", 266 "../call:call_interfaces",
269 "../call:rtp_receiver", 267 "../call:rtp_receiver",
270 "../common_video", 268 "../common_video",
271 "../logging:rtc_event_log_api", 269 "../logging:rtc_event_log_api",
272 "../media:rtc_media", 270 "../media:rtc_media",
273 "../media:rtc_media_base", 271 "../media:rtc_media_base",
274 "../media:rtc_media_tests_utils", 272 "../media:rtc_media_tests_utils",
275 "../modules:module_api", 273 "../modules:module_api",
276 "../modules/pacing", 274 "../modules/pacing",
277 "../modules/rtp_rtcp", 275 "../modules/rtp_rtcp",
278 "../modules/rtp_rtcp:mock_rtp_rtcp", 276 "../modules/rtp_rtcp:mock_rtp_rtcp",
279 "../modules/utility", 277 "../modules/utility",
280 "../modules/video_coding", 278 "../modules/video_coding",
281 "../modules/video_coding:video_coding_utility", 279 "../modules/video_coding:video_coding_utility",
282 "../modules/video_coding:webrtc_h264", 280 "../modules/video_coding:webrtc_h264",
283 "../modules/video_coding:webrtc_vp8", 281 "../modules/video_coding:webrtc_vp8",
284 "../modules/video_coding:webrtc_vp9", 282 "../modules/video_coding:webrtc_vp9",
283 "../rtc_base:rtc_base_approved",
284 "../rtc_base:rtc_base_tests_utils",
285 "../system_wrappers", 285 "../system_wrappers",
286 "../system_wrappers:field_trial_default", 286 "../system_wrappers:field_trial_default",
287 "../system_wrappers:metrics_api", 287 "../system_wrappers:metrics_api",
288 "../system_wrappers:metrics_default", 288 "../system_wrappers:metrics_default",
289 "../test:direct_transport", 289 "../test:direct_transport",
290 "../test:field_trial", 290 "../test:field_trial",
291 "../test:rtp_test_utils", 291 "../test:rtp_test_utils",
292 "../test:test_common", 292 "../test:test_common",
293 "../test:test_support", 293 "../test:test_support",
294 "../test:video_test_common", 294 "../test:video_test_common",
295 "//testing/gmock", 295 "//testing/gmock",
296 "//testing/gtest", 296 "//testing/gtest",
297 ] 297 ]
298 if (!build_with_chromium && is_clang) { 298 if (!build_with_chromium && is_clang) {
299 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). 299 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163).
300 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] 300 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ]
301 } 301 }
302 if (rtc_use_h264) { 302 if (rtc_use_h264) {
303 defines += [ "WEBRTC_USE_H264" ] 303 defines += [ "WEBRTC_USE_H264" ]
304 } 304 }
305 } 305 }
306 } 306 }
OLDNEW
« no previous file with comments | « webrtc/test/fuzzers/BUILD.gn ('k') | webrtc/voice_engine/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698