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

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

Issue 2219653004: Remove old methods in AudioTransport, make it pass a gn build (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Created 4 years, 4 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 21 matching lines...) Expand all
32 }, 32 },
33 # TODO(xians): Rename files to e.g. *_linux.{ext}, remove sources in condi tions section 33 # TODO(xians): Rename files to e.g. *_linux.{ext}, remove sources in condi tions section
34 'sources': [ 34 'sources': [
35 'include/audio_device.h', 35 'include/audio_device.h',
36 'include/audio_device_defines.h', 36 'include/audio_device_defines.h',
37 'audio_device_buffer.cc', 37 'audio_device_buffer.cc',
38 'audio_device_buffer.h', 38 'audio_device_buffer.h',
39 'audio_device_generic.cc', 39 'audio_device_generic.cc',
40 'audio_device_generic.h', 40 'audio_device_generic.h',
41 'audio_device_config.h', 41 'audio_device_config.h',
42 'audio_transport.cc',
42 'dummy/audio_device_dummy.cc', 43 'dummy/audio_device_dummy.cc',
43 'dummy/audio_device_dummy.h', 44 'dummy/audio_device_dummy.h',
44 'dummy/file_audio_device.cc', 45 'dummy/file_audio_device.cc',
45 'dummy/file_audio_device.h', 46 'dummy/file_audio_device.h',
46 'fine_audio_buffer.cc', 47 'fine_audio_buffer.cc',
47 'fine_audio_buffer.h', 48 'fine_audio_buffer.h',
48 ], 49 ],
49 'conditions': [ 50 'conditions': [
50 ['OS=="linux"', { 51 ['OS=="linux"', {
51 'include_dirs': [ 52 'include_dirs': [
(...skipping 233 matching lines...) Expand 10 before | Expand all | Expand 10 after
285 'test/audio_device_test_defines.h', 286 'test/audio_device_test_defines.h',
286 'test/func_test_manager.cc', 287 'test/func_test_manager.cc',
287 'test/func_test_manager.h', 288 'test/func_test_manager.h',
288 ], 289 ],
289 }, 290 },
290 ], # targets 291 ], # targets
291 }], # include_tests==1 and OS!=ios 292 }], # include_tests==1 and OS!=ios
292 ], 293 ],
293 } 294 }
294 295
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698