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 753 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
764 "video/full_stack.cc", | 764 "video/full_stack.cc", |
765 ] | 765 ] |
766 deps = [ | 766 deps = [ |
767 ":video_quality_test", | 767 ":video_quality_test", |
768 ":webrtc", | 768 ":webrtc", |
769 "modules/audio_coding:neteq_test_support", | 769 "modules/audio_coding:neteq_test_support", |
770 "modules/audio_processing", | 770 "modules/audio_processing", |
771 "modules/audio_processing:audioproc_test_utils", | 771 "modules/audio_processing:audioproc_test_utils", |
772 "modules/remote_bitrate_estimator:bwe_simulator", | 772 "modules/remote_bitrate_estimator:bwe_simulator", |
773 "modules/rtp_rtcp", | 773 "modules/rtp_rtcp", |
| 774 "test:channel_transport", |
774 "test:test_common", | 775 "test:test_common", |
775 "test:test_main", | 776 "test:test_main", |
776 "test:test_renderer", | 777 "test:test_renderer", |
777 "voice_engine", | 778 "voice_engine", |
778 "//testing/gmock", | 779 "//testing/gmock", |
779 "//testing/gtest", | 780 "//testing/gtest", |
780 ] | 781 ] |
781 if (is_android) { | 782 if (is_android) { |
782 deps += [ "//testing/android/native_test:native_test_native_code" ] | 783 deps += [ "//testing/android/native_test:native_test_native_code" ] |
783 data = webrtc_perf_tests_resources | 784 data = webrtc_perf_tests_resources |
(...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
820 if (is_mac) { | 821 if (is_mac) { |
821 sources += [ "base/macsocketserver_unittest.cc" ] | 822 sources += [ "base/macsocketserver_unittest.cc" ] |
822 } | 823 } |
823 if (is_clang) { | 824 if (is_clang) { |
824 # Suppress warnings from the Chromium Clang plugin. | 825 # Suppress warnings from the Chromium Clang plugin. |
825 # See http://code.google.com/p/webrtc/issues/detail?id=163 for details. | 826 # See http://code.google.com/p/webrtc/issues/detail?id=163 for details. |
826 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] | 827 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] |
827 } | 828 } |
828 } | 829 } |
829 } | 830 } |
OLD | NEW |