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 74 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
85 "base/videocommon.h", | 85 "base/videocommon.h", |
86 "base/videoframe.cc", | 86 "base/videoframe.cc", |
87 "base/videoframe.h", | 87 "base/videoframe.h", |
88 "base/videoframefactory.cc", | 88 "base/videoframefactory.cc", |
89 "base/videoframefactory.h", | 89 "base/videoframefactory.h", |
90 "base/videorenderer.h", | 90 "base/videorenderer.h", |
91 "base/videosourcebase.cc", | 91 "base/videosourcebase.cc", |
92 "base/videosourcebase.h", | 92 "base/videosourcebase.h", |
93 "devices/videorendererfactory.h", | 93 "devices/videorendererfactory.h", |
94 "engine/nullwebrtcvideoengine.h", | 94 "engine/nullwebrtcvideoengine.h", |
| 95 "engine/payload_type_mapper.cc", |
| 96 "engine/payload_type_mapper.h", |
95 "engine/simulcast.cc", | 97 "engine/simulcast.cc", |
96 "engine/simulcast.h", | 98 "engine/simulcast.h", |
97 "engine/webrtccommon.h", | 99 "engine/webrtccommon.h", |
98 "engine/webrtcmediaengine.cc", | 100 "engine/webrtcmediaengine.cc", |
99 "engine/webrtcmediaengine.h", | 101 "engine/webrtcmediaengine.h", |
100 "engine/webrtcvideocapturer.cc", | 102 "engine/webrtcvideocapturer.cc", |
101 "engine/webrtcvideocapturer.h", | 103 "engine/webrtcvideocapturer.h", |
102 "engine/webrtcvideocapturerfactory.cc", | 104 "engine/webrtcvideocapturerfactory.cc", |
103 "engine/webrtcvideocapturerfactory.h", | 105 "engine/webrtcvideocapturerfactory.h", |
104 "engine/webrtcvideodecoderfactory.h", | 106 "engine/webrtcvideodecoderfactory.h", |
(...skipping 247 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
352 deps += [ | 354 deps += [ |
353 # TODO(kjellander): Move as part of work in bugs.webrtc.org/4243. | 355 # TODO(kjellander): Move as part of work in bugs.webrtc.org/4243. |
354 ":rtc_media", | 356 ":rtc_media", |
355 ":rtc_unittest_main", | 357 ":rtc_unittest_main", |
356 "../audio", | 358 "../audio", |
357 "../base:rtc_base_tests_utils", | 359 "../base:rtc_base_tests_utils", |
358 "../system_wrappers:metrics_default", | 360 "../system_wrappers:metrics_default", |
359 ] | 361 ] |
360 } | 362 } |
361 } | 363 } |
OLD | NEW |