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

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

Issue 2795163002: Reland of Move video_encoder.h and video_decoder.h to /api and create GN targets for them (Closed)
Patch Set: Fix typo Created 3 years, 8 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/api/video_codecs/video_encoder.h ('k') | webrtc/media/engine/fakewebrtcvideoengine.h » ('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) 2016 The WebRTC project authors. All Rights Reserved. 1 # Copyright (c) 2016 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/config/linux/pkg_config.gni") 9 import("//build/config/linux/pkg_config.gni")
10 import("../webrtc.gni") 10 import("../webrtc.gni")
(...skipping 208 matching lines...) Expand 10 before | Expand all | Expand 10 after
219 deps += [ "../modules/video_capture:video_capture_internal_impl" ] 219 deps += [ "../modules/video_capture:video_capture_internal_impl" ]
220 } 220 }
221 deps += [ 221 deps += [
222 ":rtc_media_base", 222 ":rtc_media_base",
223 "..:webrtc_common", 223 "..:webrtc_common",
224 "../api:call_api", 224 "../api:call_api",
225 "../api:transport_api", 225 "../api:transport_api",
226 "../api:video_frame_api", 226 "../api:video_frame_api",
227 "../api/audio_codecs:audio_codecs_api", 227 "../api/audio_codecs:audio_codecs_api",
228 "../api/audio_codecs:builtin_audio_decoder_factory", 228 "../api/audio_codecs:builtin_audio_decoder_factory",
229 "../api/video_codecs:video_codecs_api",
229 "../base:rtc_base", 230 "../base:rtc_base",
230 "../base:rtc_base_approved", 231 "../base:rtc_base_approved",
231 "../call", 232 "../call",
232 "../common_video:common_video", 233 "../common_video:common_video",
233 "../modules/audio_coding:rent_a_codec", 234 "../modules/audio_coding:rent_a_codec",
234 "../modules/audio_device:audio_device", 235 "../modules/audio_device:audio_device",
235 "../modules/audio_mixer:audio_mixer_impl", 236 "../modules/audio_mixer:audio_mixer_impl",
236 "../modules/audio_processing:audio_processing", 237 "../modules/audio_processing:audio_processing",
237 "../modules/video_capture:video_capture_module", 238 "../modules/video_capture:video_capture_module",
238 "../modules/video_coding", 239 "../modules/video_coding",
(...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after
298 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). 299 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163).
299 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] 300 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ]
300 } 301 }
301 302
302 deps += [ 303 deps += [
303 ":rtc_media", 304 ":rtc_media",
304 ":rtc_media_base", 305 ":rtc_media_base",
305 "..:webrtc_common", 306 "..:webrtc_common",
306 "../api:call_api", 307 "../api:call_api",
307 "../api:video_frame_api", 308 "../api:video_frame_api",
309 "../api/video_codecs:video_codecs_api",
308 "../base:rtc_base", 310 "../base:rtc_base",
309 "../base:rtc_base_approved", 311 "../base:rtc_base_approved",
310 "../base:rtc_base_tests_main", 312 "../base:rtc_base_tests_main",
311 "../base:rtc_base_tests_utils", 313 "../base:rtc_base_tests_utils",
312 "../call:call_interfaces", 314 "../call:call_interfaces",
313 "../test:test_support", 315 "../test:test_support",
314 "//testing/gtest", 316 "//testing/gtest",
315 ] 317 ]
316 public_deps += [ "//testing/gmock" ] 318 public_deps += [ "//testing/gmock" ]
317 } 319 }
(...skipping 113 matching lines...) Expand 10 before | Expand all | Expand 10 after
431 if (is_ios) { 433 if (is_ios) {
432 deps += [ ":rtc_media_unittests_bundle_data" ] 434 deps += [ ":rtc_media_unittests_bundle_data" ]
433 } 435 }
434 436
435 deps += [ 437 deps += [
436 ":rtc_media", 438 ":rtc_media",
437 ":rtc_media_base", 439 ":rtc_media_base",
438 ":rtc_unittest_main", 440 ":rtc_unittest_main",
439 "../api:video_frame_api", 441 "../api:video_frame_api",
440 "../api/audio_codecs:builtin_audio_decoder_factory", 442 "../api/audio_codecs:builtin_audio_decoder_factory",
443 "../api/video_codecs:video_codecs_api",
441 "../audio", 444 "../audio",
442 "../base:rtc_base", 445 "../base:rtc_base",
443 "../base:rtc_base_approved", 446 "../base:rtc_base_approved",
444 "../base:rtc_base_tests_utils", 447 "../base:rtc_base_tests_utils",
445 "../call:call_interfaces", 448 "../call:call_interfaces",
446 "../common_video:common_video", 449 "../common_video:common_video",
447 "../logging:rtc_event_log_api", 450 "../logging:rtc_event_log_api",
448 "../modules/audio_device:mock_audio_device", 451 "../modules/audio_device:mock_audio_device",
449 "../modules/audio_processing:audio_processing", 452 "../modules/audio_processing:audio_processing",
450 "../modules/video_coding:video_coding_utility", 453 "../modules/video_coding:video_coding_utility",
451 "../modules/video_coding:webrtc_vp8", 454 "../modules/video_coding:webrtc_vp8",
452 "../p2p:rtc_p2p_unittests", 455 "../p2p:rtc_p2p_unittests",
453 "../system_wrappers:metrics_default", 456 "../system_wrappers:metrics_default",
454 "../test:test_support", 457 "../test:test_support",
455 "../voice_engine:voice_engine", 458 "../voice_engine:voice_engine",
456 ] 459 ]
457 } 460 }
458 } 461 }
OLDNEW
« no previous file with comments | « webrtc/api/video_codecs/video_encoder.h ('k') | webrtc/media/engine/fakewebrtcvideoengine.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698