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 257 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
268 ] | 268 ] |
269 deps = [ | 269 deps = [ |
270 ":audio_device", | 270 ":audio_device", |
271 ":mock_audio_device", | 271 ":mock_audio_device", |
272 "../../base:rtc_base_approved", | 272 "../../base:rtc_base_approved", |
273 "../../system_wrappers:system_wrappers", | 273 "../../system_wrappers:system_wrappers", |
274 "../../test:test_support", | 274 "../../test:test_support", |
275 "../utility:utility", | 275 "../utility:utility", |
276 "//testing/gmock", | 276 "//testing/gmock", |
277 ] | 277 ] |
278 if (is_linux) { | 278 if (is_linux || is_mac || is_win) { |
279 sources += [ "audio_device_unittest.cc" ] | 279 sources += [ "audio_device_unittest.cc" ] |
280 } | 280 } |
281 if (is_android) { | 281 if (is_android) { |
282 # Need to disable error due to the line in | 282 # Need to disable error due to the line in |
283 # base/android/jni_android.h triggering it: | 283 # base/android/jni_android.h triggering it: |
284 # const BASE_EXPORT jobject GetApplicationContext() | 284 # const BASE_EXPORT jobject GetApplicationContext() |
285 # error: type qualifiers ignored on function return type | 285 # error: type qualifiers ignored on function return type |
286 cflags = [ "-Wno-ignored-qualifiers" ] | 286 cflags = [ "-Wno-ignored-qualifiers" ] |
287 sources += [ | 287 sources += [ |
288 "android/audio_device_unittest.cc", | 288 "android/audio_device_unittest.cc", |
(...skipping 65 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
354 "android/java/src/org/webrtc/voiceengine/WebRtcAudioManager.java", | 354 "android/java/src/org/webrtc/voiceengine/WebRtcAudioManager.java", |
355 "android/java/src/org/webrtc/voiceengine/WebRtcAudioRecord.java", | 355 "android/java/src/org/webrtc/voiceengine/WebRtcAudioRecord.java", |
356 "android/java/src/org/webrtc/voiceengine/WebRtcAudioTrack.java", | 356 "android/java/src/org/webrtc/voiceengine/WebRtcAudioTrack.java", |
357 "android/java/src/org/webrtc/voiceengine/WebRtcAudioUtils.java", | 357 "android/java/src/org/webrtc/voiceengine/WebRtcAudioUtils.java", |
358 ] | 358 ] |
359 deps = [ | 359 deps = [ |
360 "//webrtc/base:base_java", | 360 "//webrtc/base:base_java", |
361 ] | 361 ] |
362 } | 362 } |
363 } | 363 } |
OLD | NEW |