Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 # Copyright (c) 2015 The WebRTC project authors. All Rights Reserved. | 1 # Copyright (c) 2015 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("../webrtc.gni") | 9 import("../webrtc.gni") |
| 10 if (is_android) { | 10 if (is_android) { |
| (...skipping 58 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 69 } | 69 } |
| 70 | 70 |
| 71 # TODO(kjellander): Remove (bugs.webrtc.org/6828) | 71 # TODO(kjellander): Remove (bugs.webrtc.org/6828) |
| 72 # This needs remote_bitrate_estimator to be moved to webrtc/api first. | 72 # This needs remote_bitrate_estimator to be moved to webrtc/api first. |
| 73 check_includes = false | 73 check_includes = false |
| 74 | 74 |
| 75 sources = [ | 75 sources = [ |
| 76 "audio_receive_stream_unittest.cc", | 76 "audio_receive_stream_unittest.cc", |
| 77 "audio_send_stream_unittest.cc", | 77 "audio_send_stream_unittest.cc", |
| 78 "audio_state_unittest.cc", | 78 "audio_state_unittest.cc", |
| 79 "test/audio_end_to_end_test.cc", | |
| 80 "test/audio_end_to_end_test.h", | |
| 81 "test/audio_stats_test.cc", | |
| 79 "time_interval_unittest.cc", | 82 "time_interval_unittest.cc", |
| 80 ] | 83 ] |
| 81 deps = [ | 84 deps = [ |
| 82 ":audio", | 85 ":audio", |
| 83 "../api:mock_audio_mixer", | 86 "../api:mock_audio_mixer", |
| 84 "../call:rtp_receiver", | 87 "../call:rtp_receiver", |
| 85 "../modules/audio_device:mock_audio_device", | 88 "../modules/audio_device:mock_audio_device", |
| 86 "../modules/audio_mixer:audio_mixer_impl", | 89 "../modules/audio_mixer:audio_mixer_impl", |
| 87 "../modules/congestion_controller:congestion_controller", | 90 "../modules/congestion_controller:congestion_controller", |
| 88 "../modules/congestion_controller:mock_congestion_controller", | 91 "../modules/congestion_controller:mock_congestion_controller", |
| (...skipping 11 matching lines...) Expand all Loading... | |
| 100 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). | 103 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). |
| 101 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] | 104 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] |
| 102 } | 105 } |
| 103 } | 106 } |
| 104 | 107 |
| 105 if (rtc_enable_protobuf) { | 108 if (rtc_enable_protobuf) { |
| 106 rtc_test("low_bandwidth_audio_test") { | 109 rtc_test("low_bandwidth_audio_test") { |
| 107 testonly = true | 110 testonly = true |
| 108 | 111 |
| 109 sources = [ | 112 sources = [ |
| 113 "test/audio_end_to_end_test.cc", | |
| 114 "test/audio_end_to_end_test.h", | |
|
kwiberg-webrtc
2017/09/13 14:20:26
It looks like you're adding the same files to more
the sun
2017/09/13 14:53:32
Thanks!
| |
| 110 "test/low_bandwidth_audio_test.cc", | 115 "test/low_bandwidth_audio_test.cc", |
| 111 "test/low_bandwidth_audio_test.h", | |
| 112 ] | 116 ] |
| 113 | 117 |
| 114 deps = [ | 118 deps = [ |
| 115 "../common_audio", | 119 "../common_audio", |
| 116 "../rtc_base:rtc_base_approved", | 120 "../rtc_base:rtc_base_approved", |
| 117 "../system_wrappers", | 121 "../system_wrappers", |
| 118 "../test:fake_audio_device", | 122 "../test:fake_audio_device", |
| 119 "../test:test_common", | 123 "../test:test_common", |
| 120 "../test:test_main", | 124 "../test:test_main", |
| 121 "//testing/gmock", | 125 "//testing/gmock", |
| (...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 167 data = [ | 171 data = [ |
| 168 "//resources/voice_engine/audio_dtx16.wav", | 172 "//resources/voice_engine/audio_dtx16.wav", |
| 169 ] | 173 ] |
| 170 | 174 |
| 171 if (!build_with_chromium && is_clang) { | 175 if (!build_with_chromium && is_clang) { |
| 172 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). | 176 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). |
| 173 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] | 177 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] |
| 174 } | 178 } |
| 175 } | 179 } |
| 176 } | 180 } |
| OLD | NEW |