| 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 320 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 331 "base/videocommon_unittest.cc", | 331 "base/videocommon_unittest.cc", |
| 332 "base/videoengine_unittest.h", | 332 "base/videoengine_unittest.h", |
| 333 "engine/internaldecoderfactory_unittest.cc", | 333 "engine/internaldecoderfactory_unittest.cc", |
| 334 "engine/nullwebrtcvideoengine_unittest.cc", | 334 "engine/nullwebrtcvideoengine_unittest.cc", |
| 335 "engine/payload_type_mapper_unittest.cc", | 335 "engine/payload_type_mapper_unittest.cc", |
| 336 "engine/simulcast_unittest.cc", | 336 "engine/simulcast_unittest.cc", |
| 337 "engine/videodecodersoftwarefallbackwrapper_unittest.cc", | 337 "engine/videodecodersoftwarefallbackwrapper_unittest.cc", |
| 338 "engine/videoencodersoftwarefallbackwrapper_unittest.cc", | 338 "engine/videoencodersoftwarefallbackwrapper_unittest.cc", |
| 339 "engine/webrtcmediaengine_unittest.cc", | 339 "engine/webrtcmediaengine_unittest.cc", |
| 340 "engine/webrtcvideocapturer_unittest.cc", | 340 "engine/webrtcvideocapturer_unittest.cc", |
| 341 "engine/webrtcvideoencoderfactory_unittest.cc", |
| 341 "engine/webrtcvideoengine2_unittest.cc", | 342 "engine/webrtcvideoengine2_unittest.cc", |
| 342 "engine/webrtcvoiceengine_unittest.cc", | 343 "engine/webrtcvoiceengine_unittest.cc", |
| 343 ] | 344 ] |
| 344 | 345 |
| 345 if (rtc_enable_sctp) { | 346 if (rtc_enable_sctp) { |
| 346 sources += [ "sctp/sctptransport_unittest.cc" ] | 347 sources += [ "sctp/sctptransport_unittest.cc" ] |
| 347 } | 348 } |
| 348 | 349 |
| 349 configs += [ ":rtc_media_unittests_config" ] | 350 configs += [ ":rtc_media_unittests_config" ] |
| 350 | 351 |
| (...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 383 # TODO(kjellander): Move as part of work in bugs.webrtc.org/4243. | 384 # TODO(kjellander): Move as part of work in bugs.webrtc.org/4243. |
| 384 ":rtc_media", | 385 ":rtc_media", |
| 385 ":rtc_unittest_main", | 386 ":rtc_unittest_main", |
| 386 "../audio", | 387 "../audio", |
| 387 "../base:rtc_base_tests_utils", | 388 "../base:rtc_base_tests_utils", |
| 388 "../modules/audio_device:mock_audio_device", | 389 "../modules/audio_device:mock_audio_device", |
| 389 "../system_wrappers:metrics_default", | 390 "../system_wrappers:metrics_default", |
| 390 ] | 391 ] |
| 391 } | 392 } |
| 392 } | 393 } |
| OLD | NEW |