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

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

Issue 2398123002: Make bwe_simulator a separate test target that doesnt run on the bots (Closed)
Patch Set: Created 4 years, 2 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
« no previous file with comments | « webrtc/BUILD.gn ('k') | webrtc/modules/remote_bitrate_estimator/BUILD.gn » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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/webrtc.gni") 9 import("../build/webrtc.gni")
10 import("audio_coding/audio_coding.gni") 10 import("audio_coding/audio_coding.gni")
(...skipping 609 matching lines...) Expand 10 before | Expand all | Expand 10 after
620 deps += [ 620 deps += [
621 ":audio_network_adaptor_unittests", 621 ":audio_network_adaptor_unittests",
622 "..:webrtc_common", 622 "..:webrtc_common",
623 "../base:rtc_base", # TODO(kjellander): Cleanup in bugs.webrtc.org/3806. 623 "../base:rtc_base", # TODO(kjellander): Cleanup in bugs.webrtc.org/3806.
624 "../common_audio", 624 "../common_audio",
625 "../common_video", 625 "../common_video",
626 "../system_wrappers:system_wrappers", 626 "../system_wrappers:system_wrappers",
627 "../test:rtp_test_utils", 627 "../test:rtp_test_utils",
628 "../test:test_common", 628 "../test:test_common",
629 "../test:test_support_main", 629 "../test:test_support_main",
630 "../test:test_support_main",
631 "../test:video_test_common", 630 "../test:video_test_common",
632 "audio_coding", 631 "audio_coding",
633 "audio_coding:acm_receive_test", 632 "audio_coding:acm_receive_test",
634 "audio_coding:acm_send_test", 633 "audio_coding:acm_send_test",
635 "audio_coding:builtin_audio_decoder_factory", 634 "audio_coding:builtin_audio_decoder_factory",
636 "audio_coding:cng", 635 "audio_coding:cng",
637 "audio_coding:isac_fix", 636 "audio_coding:isac_fix",
638 "audio_coding:neteq", 637 "audio_coding:neteq",
639 "audio_coding:neteq_test_support", 638 "audio_coding:neteq_test_support",
640 "audio_coding:neteq_unittest_tools", 639 "audio_coding:neteq_unittest_tools",
641 "audio_coding:pcm16b", 640 "audio_coding:pcm16b",
642 "audio_coding:red", 641 "audio_coding:red",
643 "audio_coding:webrtc_opus", 642 "audio_coding:webrtc_opus",
644 "audio_conference_mixer", 643 "audio_conference_mixer",
645 "audio_device", 644 "audio_device",
646 "audio_mixer", 645 "audio_mixer",
647 "audio_processing", 646 "audio_processing",
648 "audio_processing:audioproc_test_utils", 647 "audio_processing:audioproc_test_utils",
649 "bitrate_controller", 648 "bitrate_controller",
650 "media_file", 649 "media_file",
651 "pacing", 650 "pacing",
652 "remote_bitrate_estimator", 651 "remote_bitrate_estimator",
653 "remote_bitrate_estimator:bwe_simulator", 652 "remote_bitrate_estimator:bwe_simulator_lib",
654 "rtp_rtcp", 653 "rtp_rtcp",
655 "utility", 654 "utility",
656 "video_capture", 655 "video_capture",
657 "video_coding", 656 "video_coding",
658 "video_coding:video_codecs_test_framework", 657 "video_coding:video_codecs_test_framework",
659 "video_coding:webrtc_vp8", 658 "video_coding:webrtc_vp8",
660 "video_coding:webrtc_vp9", 659 "video_coding:webrtc_vp9",
661 "video_processing", 660 "video_processing",
662 "//testing/gmock", 661 "//testing/gmock",
663 "//testing/gtest", 662 "//testing/gtest",
(...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after
698 "video_coding/codecs/h264/h264_video_toolbox_nalu_unittest.cc", 697 "video_coding/codecs/h264/h264_video_toolbox_nalu_unittest.cc",
699 ] 698 ]
700 699
701 if (target_cpu != "x64") { 700 if (target_cpu != "x64") {
702 sources += [ "audio_device/ios/audio_device_unittest_ios.cc" ] 701 sources += [ "audio_device/ios/audio_device_unittest_ios.cc" ]
703 } 702 }
704 703
705 ldflags = [ "-ObjC" ] 704 ldflags = [ "-ObjC" ]
706 } 705 }
707 } 706 }
707
708 rtc_test("bwe_simulator") {
709 testonly = true
710
711 deps = []
712 sources = [
713 "remote_bitrate_estimator/bwe_simulations.cc",
714 ]
715
716 if (is_clang) {
717 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163).
718 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ]
719 }
720
721 if (is_win) {
722 cflags = [
723 # TODO(kjellander): bugs.webrtc.org/261: Fix this warning.
724 "/wd4373", # virtual function override.
725 ]
726 }
727
728 deps += [
729 "..:webrtc_common",
730 "../base:rtc_base_approved",
731 "../test:test_common",
732 "../test:test_support_main",
733 "remote_bitrate_estimator:bwe_simulator_lib",
734 "video_capture",
735 "//testing/gmock",
736 "//testing/gtest",
737 "//third_party/gflags",
738 ]
739 }
708 } 740 }
OLDNEW
« no previous file with comments | « webrtc/BUILD.gn ('k') | webrtc/modules/remote_bitrate_estimator/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698