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 122 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
133 "engine/videoencodersoftwarefallbackwrapper.h", | 133 "engine/videoencodersoftwarefallbackwrapper.h", |
134 "engine/webrtccommon.h", | 134 "engine/webrtccommon.h", |
135 "engine/webrtcmediaengine.cc", | 135 "engine/webrtcmediaengine.cc", |
136 "engine/webrtcmediaengine.h", | 136 "engine/webrtcmediaengine.h", |
137 "engine/webrtcvideocapturer.cc", | 137 "engine/webrtcvideocapturer.cc", |
138 "engine/webrtcvideocapturer.h", | 138 "engine/webrtcvideocapturer.h", |
139 "engine/webrtcvideocapturerfactory.cc", | 139 "engine/webrtcvideocapturerfactory.cc", |
140 "engine/webrtcvideocapturerfactory.h", | 140 "engine/webrtcvideocapturerfactory.h", |
141 "engine/webrtcvideodecoderfactory.h", | 141 "engine/webrtcvideodecoderfactory.h", |
142 "engine/webrtcvideoencoderfactory.h", | 142 "engine/webrtcvideoencoderfactory.h", |
143 "engine/webrtcvideoengine2.cc", | 143 "engine/webrtcvideoengine.cc", |
144 "engine/webrtcvideoengine2.h", | 144 "engine/webrtcvideoengine.h", |
145 "engine/webrtcvoe.h", | 145 "engine/webrtcvoe.h", |
146 "engine/webrtcvoiceengine.cc", | 146 "engine/webrtcvoiceengine.cc", |
147 "engine/webrtcvoiceengine.h", | 147 "engine/webrtcvoiceengine.h", |
148 "sctp/sctptransportinternal.h", | 148 "sctp/sctptransportinternal.h", |
149 ] | 149 ] |
150 | 150 |
151 if (rtc_enable_sctp) { | 151 if (rtc_enable_sctp) { |
152 sources += [ | 152 sources += [ |
153 "sctp/sctptransport.cc", | 153 "sctp/sctptransport.cc", |
154 "sctp/sctptransport.h", | 154 "sctp/sctptransport.h", |
(...skipping 219 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
374 "engine/apm_helpers_unittest.cc", | 374 "engine/apm_helpers_unittest.cc", |
375 "engine/internaldecoderfactory_unittest.cc", | 375 "engine/internaldecoderfactory_unittest.cc", |
376 "engine/nullwebrtcvideoengine_unittest.cc", | 376 "engine/nullwebrtcvideoengine_unittest.cc", |
377 "engine/payload_type_mapper_unittest.cc", | 377 "engine/payload_type_mapper_unittest.cc", |
378 "engine/simulcast_unittest.cc", | 378 "engine/simulcast_unittest.cc", |
379 "engine/videodecodersoftwarefallbackwrapper_unittest.cc", | 379 "engine/videodecodersoftwarefallbackwrapper_unittest.cc", |
380 "engine/videoencodersoftwarefallbackwrapper_unittest.cc", | 380 "engine/videoencodersoftwarefallbackwrapper_unittest.cc", |
381 "engine/webrtcmediaengine_unittest.cc", | 381 "engine/webrtcmediaengine_unittest.cc", |
382 "engine/webrtcvideocapturer_unittest.cc", | 382 "engine/webrtcvideocapturer_unittest.cc", |
383 "engine/webrtcvideoencoderfactory_unittest.cc", | 383 "engine/webrtcvideoencoderfactory_unittest.cc", |
384 "engine/webrtcvideoengine2_unittest.cc", | 384 "engine/webrtcvideoengine_unittest.cc", |
385 "engine/webrtcvoiceengine_unittest.cc", | 385 "engine/webrtcvoiceengine_unittest.cc", |
386 ] | 386 ] |
387 | 387 |
388 if (rtc_enable_sctp) { | 388 if (rtc_enable_sctp) { |
389 sources += [ "sctp/sctptransport_unittest.cc" ] | 389 sources += [ "sctp/sctptransport_unittest.cc" ] |
390 } | 390 } |
391 | 391 |
392 configs += [ ":rtc_media_unittests_config" ] | 392 configs += [ ":rtc_media_unittests_config" ] |
393 | 393 |
394 if (rtc_use_h264) { | 394 if (rtc_use_h264) { |
(...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
450 "../modules/video_coding:video_coding_utility", | 450 "../modules/video_coding:video_coding_utility", |
451 "../modules/video_coding:webrtc_vp8", | 451 "../modules/video_coding:webrtc_vp8", |
452 "../p2p:p2p_test_utils", | 452 "../p2p:p2p_test_utils", |
453 "../system_wrappers:metrics_default", | 453 "../system_wrappers:metrics_default", |
454 "../test:audio_codec_mocks", | 454 "../test:audio_codec_mocks", |
455 "../test:test_support", | 455 "../test:test_support", |
456 "../voice_engine:voice_engine", | 456 "../voice_engine:voice_engine", |
457 ] | 457 ] |
458 } | 458 } |
459 } | 459 } |
OLD | NEW |