Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1636)

Side by Side Diff: webrtc/modules/audio_device/BUILD.gn

Issue 2736503002: Adds unit test for ADM on Linux (Closed)
Patch Set: Final tuning Created 3 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | webrtc/modules/audio_device/audio_device_unittest.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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) {
279 sources += [ "audio_device_unittest.cc" ]
280 }
278 if (is_android) { 281 if (is_android) {
279 # Need to disable error due to the line in 282 # Need to disable error due to the line in
280 # base/android/jni_android.h triggering it: 283 # base/android/jni_android.h triggering it:
281 # const BASE_EXPORT jobject GetApplicationContext() 284 # const BASE_EXPORT jobject GetApplicationContext()
282 # error: type qualifiers ignored on function return type 285 # error: type qualifiers ignored on function return type
283 cflags = [ "-Wno-ignored-qualifiers" ] 286 cflags = [ "-Wno-ignored-qualifiers" ]
284 sources += [ 287 sources += [
285 "android/audio_device_unittest.cc", 288 "android/audio_device_unittest.cc",
286 "android/audio_manager_unittest.cc", 289 "android/audio_manager_unittest.cc",
287 "android/ensure_initialized.cc", 290 "android/ensure_initialized.cc",
(...skipping 63 matching lines...) Expand 10 before | Expand all | Expand 10 after
351 "android/java/src/org/webrtc/voiceengine/WebRtcAudioManager.java", 354 "android/java/src/org/webrtc/voiceengine/WebRtcAudioManager.java",
352 "android/java/src/org/webrtc/voiceengine/WebRtcAudioRecord.java", 355 "android/java/src/org/webrtc/voiceengine/WebRtcAudioRecord.java",
353 "android/java/src/org/webrtc/voiceengine/WebRtcAudioTrack.java", 356 "android/java/src/org/webrtc/voiceengine/WebRtcAudioTrack.java",
354 "android/java/src/org/webrtc/voiceengine/WebRtcAudioUtils.java", 357 "android/java/src/org/webrtc/voiceengine/WebRtcAudioUtils.java",
355 ] 358 ]
356 deps = [ 359 deps = [
357 "//webrtc/base:base_java", 360 "//webrtc/base:base_java",
358 ] 361 ]
359 } 362 }
360 } 363 }
OLDNEW
« no previous file with comments | « no previous file | webrtc/modules/audio_device/audio_device_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698