| 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("../webrtc.gni") | 10 import("../webrtc.gni") |
| (...skipping 132 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 143 "engine/videoencodersoftwarefallbackwrapper.cc", | 143 "engine/videoencodersoftwarefallbackwrapper.cc", |
| 144 "engine/videoencodersoftwarefallbackwrapper.h", | 144 "engine/videoencodersoftwarefallbackwrapper.h", |
| 145 "engine/webrtccommon.h", | 145 "engine/webrtccommon.h", |
| 146 "engine/webrtcmediaengine.cc", | 146 "engine/webrtcmediaengine.cc", |
| 147 "engine/webrtcmediaengine.h", | 147 "engine/webrtcmediaengine.h", |
| 148 "engine/webrtcvideocapturer.cc", | 148 "engine/webrtcvideocapturer.cc", |
| 149 "engine/webrtcvideocapturer.h", | 149 "engine/webrtcvideocapturer.h", |
| 150 "engine/webrtcvideocapturerfactory.cc", | 150 "engine/webrtcvideocapturerfactory.cc", |
| 151 "engine/webrtcvideocapturerfactory.h", | 151 "engine/webrtcvideocapturerfactory.h", |
| 152 "engine/webrtcvideodecoderfactory.h", | 152 "engine/webrtcvideodecoderfactory.h", |
| 153 "engine/webrtcvideoencoderfactory.cc", | |
| 154 "engine/webrtcvideoencoderfactory.h", | 153 "engine/webrtcvideoencoderfactory.h", |
| 155 "engine/webrtcvideoengine2.cc", | 154 "engine/webrtcvideoengine2.cc", |
| 156 "engine/webrtcvideoengine2.h", | 155 "engine/webrtcvideoengine2.h", |
| 157 "engine/webrtcvoe.h", | 156 "engine/webrtcvoe.h", |
| 158 "engine/webrtcvoiceengine.cc", | 157 "engine/webrtcvoiceengine.cc", |
| 159 "engine/webrtcvoiceengine.h", | 158 "engine/webrtcvoiceengine.h", |
| 160 "sctp/sctptransportinternal.h", | 159 "sctp/sctptransportinternal.h", |
| 161 ] | 160 ] |
| 162 | 161 |
| 163 if (rtc_enable_sctp) { | 162 if (rtc_enable_sctp) { |
| (...skipping 294 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 458 "../modules/video_coding:video_coding_utility", | 457 "../modules/video_coding:video_coding_utility", |
| 459 "../modules/video_coding:webrtc_vp8", | 458 "../modules/video_coding:webrtc_vp8", |
| 460 "../p2p:p2p_test_utils", | 459 "../p2p:p2p_test_utils", |
| 461 "../system_wrappers:metrics_default", | 460 "../system_wrappers:metrics_default", |
| 462 "../test:audio_codec_mocks", | 461 "../test:audio_codec_mocks", |
| 463 "../test:test_support", | 462 "../test:test_support", |
| 464 "../voice_engine:voice_engine", | 463 "../voice_engine:voice_engine", |
| 465 ] | 464 ] |
| 466 } | 465 } |
| 467 } | 466 } |
| OLD | NEW |