Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(90)

Side by Side Diff: webrtc/media/BUILD.gn

Issue 2938193002: Enable more unittests on iOS, and disable those that fail on simulator (Closed)
Patch Set: Disable webrtcvoiceengine_unittest.cc because it fails on iOS in general Created 3 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 425 matching lines...) Expand 10 before | Expand all | Expand 10 after
436 "engine/internaldecoderfactory_unittest.cc", 436 "engine/internaldecoderfactory_unittest.cc",
437 "engine/nullwebrtcvideoengine_unittest.cc", 437 "engine/nullwebrtcvideoengine_unittest.cc",
438 "engine/payload_type_mapper_unittest.cc", 438 "engine/payload_type_mapper_unittest.cc",
439 "engine/simulcast_unittest.cc", 439 "engine/simulcast_unittest.cc",
440 "engine/videodecodersoftwarefallbackwrapper_unittest.cc", 440 "engine/videodecodersoftwarefallbackwrapper_unittest.cc",
441 "engine/videoencodersoftwarefallbackwrapper_unittest.cc", 441 "engine/videoencodersoftwarefallbackwrapper_unittest.cc",
442 "engine/webrtcmediaengine_unittest.cc", 442 "engine/webrtcmediaengine_unittest.cc",
443 "engine/webrtcvideocapturer_unittest.cc", 443 "engine/webrtcvideocapturer_unittest.cc",
444 "engine/webrtcvideoencoderfactory_unittest.cc", 444 "engine/webrtcvideoencoderfactory_unittest.cc",
445 "engine/webrtcvideoengine_unittest.cc", 445 "engine/webrtcvideoengine_unittest.cc",
446 "engine/webrtcvoiceengine_unittest.cc",
447 ] 446 ]
448 447
448 # TODO(kthelgason): Reenable this test on iOS.
449 # See bugs.webrtc.org/5569
450 if (!is_ios) {
451 sources += [ "engine/webrtcvoiceengine_unittest.cc" ]
452 }
453
449 if (rtc_enable_sctp) { 454 if (rtc_enable_sctp) {
450 sources += [ "sctp/sctptransport_unittest.cc" ] 455 sources += [ "sctp/sctptransport_unittest.cc" ]
451 } 456 }
452 457
453 configs += [ ":rtc_media_unittests_config" ] 458 configs += [ ":rtc_media_unittests_config" ]
454 459
455 if (rtc_use_h264) { 460 if (rtc_use_h264) {
456 defines += [ "WEBRTC_USE_H264" ] 461 defines += [ "WEBRTC_USE_H264" ]
457 } 462 }
458 463
(...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after
511 "../modules/video_coding:video_coding_utility", 516 "../modules/video_coding:video_coding_utility",
512 "../modules/video_coding:webrtc_vp8", 517 "../modules/video_coding:webrtc_vp8",
513 "../p2p:p2p_test_utils", 518 "../p2p:p2p_test_utils",
514 "../system_wrappers:metrics_default", 519 "../system_wrappers:metrics_default",
515 "../test:audio_codec_mocks", 520 "../test:audio_codec_mocks",
516 "../test:test_support", 521 "../test:test_support",
517 "../voice_engine:voice_engine", 522 "../voice_engine:voice_engine",
518 ] 523 ]
519 } 524 }
520 } 525 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698