OLD | NEW |
1 # Copyright (c) 2014 The WebRTC project authors. All Rights Reserved. | 1 # Copyright (c) 2014 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 # TODO(kjellander): Rebase this to webrtc/build/common.gypi changes after r6330. | 9 # TODO(kjellander): Rebase this to webrtc/build/common.gypi changes after r6330. |
10 | 10 |
(...skipping 725 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
736 "//testing/gtest", | 736 "//testing/gtest", |
737 "//third_party/gflags", | 737 "//third_party/gflags", |
738 ] | 738 ] |
739 if (is_clang && !is_nacl) { | 739 if (is_clang && !is_nacl) { |
740 # Suppress warnings from Chrome's Clang plugins. | 740 # Suppress warnings from Chrome's Clang plugins. |
741 # See http://code.google.com/p/webrtc/issues/detail?id=163 for details. | 741 # See http://code.google.com/p/webrtc/issues/detail?id=163 for details. |
742 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] | 742 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] |
743 } | 743 } |
744 } | 744 } |
745 | 745 |
| 746 rtc_executable("screenshare_loopback") { |
| 747 testonly = true |
| 748 sources = [ |
| 749 "test/run_test.h", |
| 750 "video/screenshare_loopback.cc", |
| 751 ] |
| 752 |
| 753 if (is_mac) { |
| 754 sources += [ "test/mac/run_test.mm" ] |
| 755 } else { |
| 756 sources += [ "test/run_test.cc" ] |
| 757 } |
| 758 deps = [ |
| 759 ":video_quality_test", |
| 760 "system_wrappers:metrics_default", |
| 761 "test:field_trial", |
| 762 "test:test_common", |
| 763 "test:test_renderer", |
| 764 "//testing/gmock", |
| 765 "//testing/gtest", |
| 766 "//third_party/gflags", |
| 767 ] |
| 768 if (is_clang && !is_nacl) { |
| 769 # Suppress warnings from Chrome's Clang plugins. |
| 770 # See http://code.google.com/p/webrtc/issues/detail?id=163 for details. |
| 771 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] |
| 772 } |
| 773 } |
| 774 |
746 rtc_test("webrtc_perf_tests") { | 775 rtc_test("webrtc_perf_tests") { |
747 testonly = true | 776 testonly = true |
748 configs += [ ":rtc_unittests_config" ] | 777 configs += [ ":rtc_unittests_config" ] |
749 | 778 |
750 sources = [ | 779 sources = [ |
751 "call/call_perf_tests.cc", | 780 "call/call_perf_tests.cc", |
752 "call/rampup_tests.cc", | 781 "call/rampup_tests.cc", |
753 "call/rampup_tests.h", | 782 "call/rampup_tests.h", |
754 "modules/audio_coding/neteq/test/neteq_performance_unittest.cc", | 783 "modules/audio_coding/neteq/test/neteq_performance_unittest.cc", |
755 "modules/audio_processing/audio_processing_performance_unittest.cc", | 784 "modules/audio_processing/audio_processing_performance_unittest.cc", |
(...skipping 65 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
821 if (is_mac) { | 850 if (is_mac) { |
822 sources += [ "base/macsocketserver_unittest.cc" ] | 851 sources += [ "base/macsocketserver_unittest.cc" ] |
823 } | 852 } |
824 if (is_clang) { | 853 if (is_clang) { |
825 # Suppress warnings from the Chromium Clang plugin. | 854 # Suppress warnings from the Chromium Clang plugin. |
826 # See http://code.google.com/p/webrtc/issues/detail?id=163 for details. | 855 # See http://code.google.com/p/webrtc/issues/detail?id=163 for details. |
827 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] | 856 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] |
828 } | 857 } |
829 } | 858 } |
830 } | 859 } |
OLD | NEW |