| 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 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 47 libs = [] | 47 libs = [] |
| 48 deps = [] | 48 deps = [] |
| 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", | |
| 58 "base/mediachannel.h", | 57 "base/mediachannel.h", |
| 59 "base/mediaconstants.cc", | 58 "base/mediaconstants.cc", |
| 60 "base/mediaconstants.h", | 59 "base/mediaconstants.h", |
| 61 "base/mediaengine.cc", | 60 "base/mediaengine.cc", |
| 62 "base/mediaengine.h", | 61 "base/mediaengine.h", |
| 63 "base/rtpdataengine.cc", | 62 "base/rtpdataengine.cc", |
| 64 "base/rtpdataengine.h", | 63 "base/rtpdataengine.h", |
| 65 "base/rtpdump.cc", | 64 "base/rtpdump.cc", |
| 66 "base/rtpdump.h", | 65 "base/rtpdump.h", |
| 67 "base/rtputils.cc", | 66 "base/rtputils.cc", |
| (...skipping 319 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 387 # TODO(kjellander): Move as part of work in bugs.webrtc.org/4243. | 386 # TODO(kjellander): Move as part of work in bugs.webrtc.org/4243. |
| 388 ":rtc_media", | 387 ":rtc_media", |
| 389 ":rtc_unittest_main", | 388 ":rtc_unittest_main", |
| 390 "../audio", | 389 "../audio", |
| 391 "../base:rtc_base_tests_utils", | 390 "../base:rtc_base_tests_utils", |
| 392 "../modules/audio_device:mock_audio_device", | 391 "../modules/audio_device:mock_audio_device", |
| 393 "../system_wrappers:metrics_default", | 392 "../system_wrappers:metrics_default", |
| 394 ] | 393 ] |
| 395 } | 394 } |
| 396 } | 395 } |
| OLD | NEW |