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

Side by Side Diff: webrtc/modules/audio_device/audio_device.gypi

Issue 2103863004: UMA log for audio_device Init and Start(Playout|Recording). Make Init return a more specific error … (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Rename variable. Created 4 years, 5 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
OLDNEW
1 # Copyright (c) 2012 The WebRTC project authors. All Rights Reserved. 1 # Copyright (c) 2012 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 { 9 {
10 'targets': [ 10 'targets': [
(...skipping 71 matching lines...) Expand 10 before | Expand all | Expand 10 after
82 # Don't link these into Chrome since they contain static data. 82 # Don't link these into Chrome since they contain static data.
83 'dummy/file_audio_device_factory.cc', 83 'dummy/file_audio_device_factory.cc',
84 'dummy/file_audio_device_factory.h', 84 'dummy/file_audio_device_factory.h',
85 ], 85 ],
86 }], 86 }],
87 ['include_internal_audio_device==1', { 87 ['include_internal_audio_device==1', {
88 'sources': [ 88 'sources': [
89 'audio_device_impl.cc', 89 'audio_device_impl.cc',
90 'audio_device_impl.h', 90 'audio_device_impl.h',
91 ], 91 ],
92 'dependencies': [
93 '<(webrtc_root)/system_wrappers/system_wrappers.gyp:metrics_default' ,
94 ],
92 'conditions': [ 95 'conditions': [
93 ['OS=="android"', { 96 ['OS=="android"', {
94 'sources': [ 97 'sources': [
95 'android/audio_device_template.h', 98 'android/audio_device_template.h',
96 'android/audio_manager.cc', 99 'android/audio_manager.cc',
97 'android/audio_manager.h', 100 'android/audio_manager.h',
98 'android/audio_record_jni.cc', 101 'android/audio_record_jni.cc',
99 'android/audio_record_jni.h', 102 'android/audio_record_jni.h',
100 'android/audio_track_jni.cc', 103 'android/audio_track_jni.cc',
101 'android/audio_track_jni.h', 104 'android/audio_track_jni.h',
(...skipping 180 matching lines...) Expand 10 before | Expand all | Expand 10 after
282 'test/audio_device_test_defines.h', 285 'test/audio_device_test_defines.h',
283 'test/func_test_manager.cc', 286 'test/func_test_manager.cc',
284 'test/func_test_manager.h', 287 'test/func_test_manager.h',
285 ], 288 ],
286 }, 289 },
287 ], # targets 290 ], # targets
288 }], # include_tests==1 and OS!=ios 291 }], # include_tests==1 and OS!=ios
289 ], 292 ],
290 } 293 }
291 294
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698