| 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 265 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 276 if (!is_android && !is_ios) { | 276 if (!is_android && !is_ios) { |
| 277 visibility = [ "..:modules_unittests" ] | 277 visibility = [ "..:modules_unittests" ] |
| 278 } | 278 } |
| 279 sources = [ | 279 sources = [ |
| 280 "fine_audio_buffer_unittest.cc", | 280 "fine_audio_buffer_unittest.cc", |
| 281 ] | 281 ] |
| 282 deps = [ | 282 deps = [ |
| 283 ":audio_device", | 283 ":audio_device", |
| 284 ":mock_audio_device", | 284 ":mock_audio_device", |
| 285 "../../api:array_view", | 285 "../../api:array_view", |
| 286 "../../api:optional", |
| 286 "../../rtc_base:rtc_base_approved", | 287 "../../rtc_base:rtc_base_approved", |
| 287 "../../system_wrappers:system_wrappers", | 288 "../../system_wrappers:system_wrappers", |
| 288 "../../test:test_support", | 289 "../../test:test_support", |
| 289 "../utility:utility", | 290 "../utility:utility", |
| 290 "//testing/gmock", | 291 "//testing/gmock", |
| 291 ] | 292 ] |
| 292 if (is_linux || is_mac || is_win) { | 293 if (is_linux || is_mac || is_win) { |
| 293 sources += [ "audio_device_unittest.cc" ] | 294 sources += [ "audio_device_unittest.cc" ] |
| 294 } | 295 } |
| 295 if (is_android) { | 296 if (is_android) { |
| (...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 333 "android/java/src/org/webrtc/voiceengine/WebRtcAudioUtils.java", | 334 "android/java/src/org/webrtc/voiceengine/WebRtcAudioUtils.java", |
| 334 ] | 335 ] |
| 335 deps = [ | 336 deps = [ |
| 336 "../../rtc_base:base_java", | 337 "../../rtc_base:base_java", |
| 337 ] | 338 ] |
| 338 | 339 |
| 339 # TODO(sakal): Fix build hooks crbug.com/webrtc/8148 | 340 # TODO(sakal): Fix build hooks crbug.com/webrtc/8148 |
| 340 no_build_hooks = true | 341 no_build_hooks = true |
| 341 } | 342 } |
| 342 } | 343 } |
| OLD | NEW |