| 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 import("../webrtc.gni") | 9 import("../webrtc.gni") |
| 10 | 10 |
| (...skipping 168 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 179 "../modules:module_api", | 179 "../modules:module_api", |
| 180 ] | 180 ] |
| 181 } | 181 } |
| 182 | 182 |
| 183 if (rtc_include_tests) { | 183 if (rtc_include_tests) { |
| 184 rtc_test("voice_engine_unittests") { | 184 rtc_test("voice_engine_unittests") { |
| 185 deps = [ | 185 deps = [ |
| 186 ":file_player", | 186 ":file_player", |
| 187 ":voice_engine", | 187 ":voice_engine", |
| 188 "../base:rtc_base_approved", | 188 "../base:rtc_base_approved", |
| 189 "../base:rtc_base_tests_utils", |
| 189 "../modules:module_api", | 190 "../modules:module_api", |
| 190 "../test:test_common", | 191 "../test:test_common", |
| 191 "//testing/gmock", | 192 "//testing/gmock", |
| 192 "//testing/gtest", | 193 "//testing/gtest", |
| 193 "//third_party/gflags", | 194 "//third_party/gflags", |
| 194 "//webrtc/common_audio", | 195 "//webrtc/common_audio", |
| 195 "//webrtc/modules/audio_coding", | 196 "//webrtc/modules/audio_coding", |
| 196 "//webrtc/modules/audio_conference_mixer", | 197 "//webrtc/modules/audio_conference_mixer", |
| 197 "//webrtc/modules/audio_device", | 198 "//webrtc/modules/audio_device", |
| 198 "//webrtc/modules/audio_processing", | 199 "//webrtc/modules/audio_processing", |
| (...skipping 109 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 308 ] | 309 ] |
| 309 } | 310 } |
| 310 | 311 |
| 311 if (!build_with_chromium && is_clang) { | 312 if (!build_with_chromium && is_clang) { |
| 312 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163)
. | 313 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163)
. |
| 313 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] | 314 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] |
| 314 } | 315 } |
| 315 } | 316 } |
| 316 } | 317 } |
| 317 } | 318 } |
| OLD | NEW |