| OLD | NEW |
| 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 96 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 107 "../base:rtc_base_approved", | 107 "../base:rtc_base_approved", |
| 108 "../p2p", | 108 "../p2p", |
| 109 ] | 109 ] |
| 110 } | 110 } |
| 111 | 111 |
| 112 rtc_static_library("rtc_media") { | 112 rtc_static_library("rtc_media") { |
| 113 defines = [] | 113 defines = [] |
| 114 libs = [] | 114 libs = [] |
| 115 deps = [] | 115 deps = [] |
| 116 sources = [ | 116 sources = [ |
| 117 # TODO(magjed): Remove base header files once Chromium is updated. | |
| 118 "base/adaptedvideotracksource.h", | |
| 119 "base/audiosource.h", | |
| 120 "base/codec.h", | |
| 121 "base/cryptoparams.h", | |
| 122 "base/device.h", | |
| 123 "base/hybriddataengine.h", | |
| 124 "base/mediachannel.h", | |
| 125 "base/mediaconstants.h", | |
| 126 "base/mediaengine.h", | |
| 127 "base/rtpdataengine.h", | |
| 128 "base/rtpdump.h", | |
| 129 "base/rtputils.h", | |
| 130 "base/streamparams.h", | |
| 131 "base/turnutils.h", | |
| 132 "base/videoadapter.h", | |
| 133 "base/videobroadcaster.h", | |
| 134 "base/videocapturer.h", | |
| 135 "base/videocapturerfactory.h", | |
| 136 "base/videocommon.h", | |
| 137 "base/videoframe.h", | |
| 138 "base/videosourcebase.h", | |
| 139 "engine/internaldecoderfactory.cc", | 117 "engine/internaldecoderfactory.cc", |
| 140 "engine/internaldecoderfactory.h", | 118 "engine/internaldecoderfactory.h", |
| 141 "engine/internalencoderfactory.cc", | 119 "engine/internalencoderfactory.cc", |
| 142 "engine/internalencoderfactory.h", | 120 "engine/internalencoderfactory.h", |
| 143 "engine/nullwebrtcvideoengine.h", | 121 "engine/nullwebrtcvideoengine.h", |
| 144 "engine/payload_type_mapper.cc", | 122 "engine/payload_type_mapper.cc", |
| 145 "engine/payload_type_mapper.h", | 123 "engine/payload_type_mapper.h", |
| 146 "engine/simulcast.cc", | 124 "engine/simulcast.cc", |
| 147 "engine/simulcast.h", | 125 "engine/simulcast.h", |
| 148 "engine/videodecodersoftwarefallbackwrapper.cc", | 126 "engine/videodecodersoftwarefallbackwrapper.cc", |
| (...skipping 251 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 400 # TODO(kjellander): Move as part of work in bugs.webrtc.org/4243. | 378 # TODO(kjellander): Move as part of work in bugs.webrtc.org/4243. |
| 401 ":rtc_media", | 379 ":rtc_media", |
| 402 ":rtc_unittest_main", | 380 ":rtc_unittest_main", |
| 403 "../audio", | 381 "../audio", |
| 404 "../base:rtc_base_tests_utils", | 382 "../base:rtc_base_tests_utils", |
| 405 "../modules/audio_device:mock_audio_device", | 383 "../modules/audio_device:mock_audio_device", |
| 406 "../system_wrappers:metrics_default", | 384 "../system_wrappers:metrics_default", |
| 407 ] | 385 ] |
| 408 } | 386 } |
| 409 } | 387 } |
| OLD | NEW |