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 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
49 sources = [ | 49 sources = [ |
50 "base/adaptedvideotracksource.cc", | 50 "base/adaptedvideotracksource.cc", |
51 "base/adaptedvideotracksource.h", | 51 "base/adaptedvideotracksource.h", |
52 "base/audiosource.h", | 52 "base/audiosource.h", |
53 "base/codec.cc", | 53 "base/codec.cc", |
54 "base/codec.h", | 54 "base/codec.h", |
55 "base/cryptoparams.h", | 55 "base/cryptoparams.h", |
56 "base/device.h", | 56 "base/device.h", |
57 "base/hybriddataengine.h", | 57 "base/hybriddataengine.h", |
58 "base/mediachannel.h", | 58 "base/mediachannel.h", |
59 "base/mediacommon.h", | |
60 "base/mediaconstants.cc", | 59 "base/mediaconstants.cc", |
61 "base/mediaconstants.h", | 60 "base/mediaconstants.h", |
62 "base/mediaengine.cc", | 61 "base/mediaengine.cc", |
63 "base/mediaengine.h", | 62 "base/mediaengine.h", |
64 "base/rtpdataengine.cc", | 63 "base/rtpdataengine.cc", |
65 "base/rtpdataengine.h", | 64 "base/rtpdataengine.h", |
66 "base/rtpdump.cc", | 65 "base/rtpdump.cc", |
67 "base/rtpdump.h", | 66 "base/rtpdump.h", |
68 "base/rtputils.cc", | 67 "base/rtputils.cc", |
69 "base/rtputils.h", | 68 "base/rtputils.h", |
(...skipping 279 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
349 deps += [ | 348 deps += [ |
350 # TODO(kjellander): Move as part of work in bugs.webrtc.org/4243. | 349 # TODO(kjellander): Move as part of work in bugs.webrtc.org/4243. |
351 ":rtc_media", | 350 ":rtc_media", |
352 ":rtc_unittest_main", | 351 ":rtc_unittest_main", |
353 "../audio", | 352 "../audio", |
354 "../base:rtc_base_tests_utils", | 353 "../base:rtc_base_tests_utils", |
355 "../system_wrappers:metrics_default", | 354 "../system_wrappers:metrics_default", |
356 ] | 355 ] |
357 } | 356 } |
358 } | 357 } |
OLD | NEW |