| 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 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 45 rtc_static_library("rtc_media") { | 45 rtc_static_library("rtc_media") { |
| 46 defines = [] | 46 defines = [] |
| 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/cpuid.cc", | |
| 56 "base/cpuid.h", | |
| 57 "base/cryptoparams.h", | 55 "base/cryptoparams.h", |
| 58 "base/device.h", | 56 "base/device.h", |
| 59 "base/hybriddataengine.h", | 57 "base/hybriddataengine.h", |
| 60 "base/mediachannel.h", | 58 "base/mediachannel.h", |
| 61 "base/mediacommon.h", | 59 "base/mediacommon.h", |
| 62 "base/mediaconstants.cc", | 60 "base/mediaconstants.cc", |
| 63 "base/mediaconstants.h", | 61 "base/mediaconstants.h", |
| 64 "base/mediaengine.cc", | 62 "base/mediaengine.cc", |
| 65 "base/mediaengine.h", | 63 "base/mediaengine.h", |
| 66 "base/rtpdataengine.cc", | 64 "base/rtpdataengine.cc", |
| (...skipping 288 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 355 deps += [ | 353 deps += [ |
| 356 # TODO(kjellander): Move as part of work in bugs.webrtc.org/4243. | 354 # TODO(kjellander): Move as part of work in bugs.webrtc.org/4243. |
| 357 ":rtc_media", | 355 ":rtc_media", |
| 358 ":rtc_unittest_main", | 356 ":rtc_unittest_main", |
| 359 "../audio", | 357 "../audio", |
| 360 "../base:rtc_base_tests_utils", | 358 "../base:rtc_base_tests_utils", |
| 361 "../system_wrappers:metrics_default", | 359 "../system_wrappers:metrics_default", |
| 362 ] | 360 ] |
| 363 } | 361 } |
| 364 } | 362 } |
| OLD | NEW |