| 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 70 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 81 "base/videobroadcaster.h", | 81 "base/videobroadcaster.h", |
| 82 "base/videocapturer.cc", | 82 "base/videocapturer.cc", |
| 83 "base/videocapturer.h", | 83 "base/videocapturer.h", |
| 84 "base/videocapturerfactory.h", | 84 "base/videocapturerfactory.h", |
| 85 "base/videocommon.cc", | 85 "base/videocommon.cc", |
| 86 "base/videocommon.h", | 86 "base/videocommon.h", |
| 87 "base/videoframe.cc", | 87 "base/videoframe.cc", |
| 88 "base/videoframe.h", | 88 "base/videoframe.h", |
| 89 "base/videoframefactory.cc", | 89 "base/videoframefactory.cc", |
| 90 "base/videoframefactory.h", | 90 "base/videoframefactory.h", |
| 91 "base/videorenderer.h", | |
| 92 "base/videosourcebase.cc", | 91 "base/videosourcebase.cc", |
| 93 "base/videosourcebase.h", | 92 "base/videosourcebase.h", |
| 94 "devices/videorendererfactory.h", | 93 "devices/videorendererfactory.h", |
| 95 "engine/nullwebrtcvideoengine.h", | 94 "engine/nullwebrtcvideoengine.h", |
| 96 "engine/payload_type_mapper.cc", | 95 "engine/payload_type_mapper.cc", |
| 97 "engine/payload_type_mapper.h", | 96 "engine/payload_type_mapper.h", |
| 98 "engine/simulcast.cc", | 97 "engine/simulcast.cc", |
| 99 "engine/simulcast.h", | 98 "engine/simulcast.h", |
| 100 "engine/webrtccommon.h", | 99 "engine/webrtccommon.h", |
| 101 "engine/webrtcmediaengine.cc", | 100 "engine/webrtcmediaengine.cc", |
| (...skipping 263 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 365 deps += [ | 364 deps += [ |
| 366 # TODO(kjellander): Move as part of work in bugs.webrtc.org/4243. | 365 # TODO(kjellander): Move as part of work in bugs.webrtc.org/4243. |
| 367 ":rtc_media", | 366 ":rtc_media", |
| 368 ":rtc_unittest_main", | 367 ":rtc_unittest_main", |
| 369 "../audio", | 368 "../audio", |
| 370 "../base:rtc_base_tests_utils", | 369 "../base:rtc_base_tests_utils", |
| 371 "../system_wrappers:metrics_default", | 370 "../system_wrappers:metrics_default", |
| 372 ] | 371 ] |
| 373 } | 372 } |
| 374 } | 373 } |
| OLD | NEW |