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

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

Issue 2521203002: Move VideoDecoder::Create() logic to separate internal video decoder factory (Closed)
Patch Set: Add unittest Created 4 years 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 | « no previous file | webrtc/media/engine/internaldecoderfactory.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("../build/webrtc.gni") 10 import("../build/webrtc.gni")
(...skipping 118 matching lines...) Expand 10 before | Expand all | Expand 10 after
129 "base/rtputils.h", 129 "base/rtputils.h",
130 "base/streamparams.h", 130 "base/streamparams.h",
131 "base/turnutils.h", 131 "base/turnutils.h",
132 "base/videoadapter.h", 132 "base/videoadapter.h",
133 "base/videobroadcaster.h", 133 "base/videobroadcaster.h",
134 "base/videocapturer.h", 134 "base/videocapturer.h",
135 "base/videocapturerfactory.h", 135 "base/videocapturerfactory.h",
136 "base/videocommon.h", 136 "base/videocommon.h",
137 "base/videoframe.h", 137 "base/videoframe.h",
138 "base/videosourcebase.h", 138 "base/videosourcebase.h",
139 "engine/internaldecoderfactory.cc",
140 "engine/internaldecoderfactory.h",
139 "engine/internalencoderfactory.cc", 141 "engine/internalencoderfactory.cc",
140 "engine/internalencoderfactory.h", 142 "engine/internalencoderfactory.h",
141 "engine/nullwebrtcvideoengine.h", 143 "engine/nullwebrtcvideoengine.h",
142 "engine/payload_type_mapper.cc", 144 "engine/payload_type_mapper.cc",
143 "engine/payload_type_mapper.h", 145 "engine/payload_type_mapper.h",
144 "engine/simulcast.cc", 146 "engine/simulcast.cc",
145 "engine/simulcast.h", 147 "engine/simulcast.h",
146 "engine/videodecodersoftwarefallbackwrapper.cc", 148 "engine/videodecodersoftwarefallbackwrapper.cc",
147 "engine/videodecodersoftwarefallbackwrapper.h", 149 "engine/videodecodersoftwarefallbackwrapper.h",
148 "engine/videoencodersoftwarefallbackwrapper.cc", 150 "engine/videoencodersoftwarefallbackwrapper.cc",
(...skipping 192 matching lines...) Expand 10 before | Expand all | Expand 10 after
341 "base/rtpdataengine_unittest.cc", 343 "base/rtpdataengine_unittest.cc",
342 "base/rtpdump_unittest.cc", 344 "base/rtpdump_unittest.cc",
343 "base/rtputils_unittest.cc", 345 "base/rtputils_unittest.cc",
344 "base/streamparams_unittest.cc", 346 "base/streamparams_unittest.cc",
345 "base/turnutils_unittest.cc", 347 "base/turnutils_unittest.cc",
346 "base/videoadapter_unittest.cc", 348 "base/videoadapter_unittest.cc",
347 "base/videobroadcaster_unittest.cc", 349 "base/videobroadcaster_unittest.cc",
348 "base/videocapturer_unittest.cc", 350 "base/videocapturer_unittest.cc",
349 "base/videocommon_unittest.cc", 351 "base/videocommon_unittest.cc",
350 "base/videoengine_unittest.h", 352 "base/videoengine_unittest.h",
353 "engine/internaldecoderfactory_unittest.cc",
351 "engine/nullwebrtcvideoengine_unittest.cc", 354 "engine/nullwebrtcvideoengine_unittest.cc",
352 "engine/payload_type_mapper_unittest.cc", 355 "engine/payload_type_mapper_unittest.cc",
353 "engine/simulcast_unittest.cc", 356 "engine/simulcast_unittest.cc",
354 "engine/videodecodersoftwarefallbackwrapper_unittest.cc", 357 "engine/videodecodersoftwarefallbackwrapper_unittest.cc",
355 "engine/videoencodersoftwarefallbackwrapper_unittest.cc", 358 "engine/videoencodersoftwarefallbackwrapper_unittest.cc",
356 "engine/webrtcmediaengine_unittest.cc", 359 "engine/webrtcmediaengine_unittest.cc",
357 "engine/webrtcvideocapturer_unittest.cc", 360 "engine/webrtcvideocapturer_unittest.cc",
358 "engine/webrtcvideoengine2_unittest.cc", 361 "engine/webrtcvideoengine2_unittest.cc",
359 "engine/webrtcvoiceengine_unittest.cc", 362 "engine/webrtcvoiceengine_unittest.cc",
360 "sctp/sctpdataengine_unittest.cc", 363 "sctp/sctpdataengine_unittest.cc",
(...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after
397 # TODO(kjellander): Move as part of work in bugs.webrtc.org/4243. 400 # TODO(kjellander): Move as part of work in bugs.webrtc.org/4243.
398 ":rtc_media", 401 ":rtc_media",
399 ":rtc_unittest_main", 402 ":rtc_unittest_main",
400 "../audio", 403 "../audio",
401 "../base:rtc_base_tests_utils", 404 "../base:rtc_base_tests_utils",
402 "../modules/audio_device:mock_audio_device", 405 "../modules/audio_device:mock_audio_device",
403 "../system_wrappers:metrics_default", 406 "../system_wrappers:metrics_default",
404 ] 407 ]
405 } 408 }
406 } 409 }
OLDNEW
« no previous file with comments | « no previous file | webrtc/media/engine/internaldecoderfactory.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698