OLD | NEW |
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 25 matching lines...) Expand all Loading... |
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 'dummy/audio_device_dummy.cc', | 42 'dummy/audio_device_dummy.cc', |
43 'dummy/audio_device_dummy.h', | 43 'dummy/audio_device_dummy.h', |
44 'dummy/file_audio_device.cc', | 44 'dummy/file_audio_device.cc', |
45 'dummy/file_audio_device.h', | 45 'dummy/file_audio_device.h', |
| 46 'fine_audio_buffer.cc', |
| 47 'fine_audio_buffer.h', |
46 ], | 48 ], |
47 'conditions': [ | 49 'conditions': [ |
48 ['OS=="linux"', { | 50 ['OS=="linux"', { |
49 'include_dirs': [ | 51 'include_dirs': [ |
50 'linux', | 52 'linux', |
51 ], | 53 ], |
52 }], # OS==linux | 54 }], # OS==linux |
53 ['OS=="ios"', { | 55 ['OS=="ios"', { |
54 'include_dirs': [ | 56 'include_dirs': [ |
55 'ios', | 57 'ios', |
(...skipping 30 matching lines...) Expand all Loading... |
86 'sources': [ | 88 'sources': [ |
87 'android/audio_device_template.h', | 89 'android/audio_device_template.h', |
88 'android/audio_manager.cc', | 90 'android/audio_manager.cc', |
89 'android/audio_manager.h', | 91 'android/audio_manager.h', |
90 'android/audio_record_jni.cc', | 92 'android/audio_record_jni.cc', |
91 'android/audio_record_jni.h', | 93 'android/audio_record_jni.h', |
92 'android/audio_track_jni.cc', | 94 'android/audio_track_jni.cc', |
93 'android/audio_track_jni.h', | 95 'android/audio_track_jni.h', |
94 'android/build_info.cc', | 96 'android/build_info.cc', |
95 'android/build_info.h', | 97 'android/build_info.h', |
96 'android/fine_audio_buffer.cc', | |
97 'android/fine_audio_buffer.h', | |
98 'android/opensles_common.cc', | 98 'android/opensles_common.cc', |
99 'android/opensles_common.h', | 99 'android/opensles_common.h', |
100 'android/opensles_player.cc', | 100 'android/opensles_player.cc', |
101 'android/opensles_player.h', | 101 'android/opensles_player.h', |
102 'audio_device_impl.cc', | 102 'audio_device_impl.cc', |
103 'audio_device_impl.h', | 103 'audio_device_impl.h', |
104 'ios/audio_device_ios.h', | 104 'ios/audio_device_ios.h', |
105 'ios/audio_device_ios.mm', | 105 'ios/audio_device_ios.mm', |
106 'ios/audio_device_not_implemented_ios.mm', | 106 'ios/audio_device_not_implemented_ios.mm', |
107 'linux/alsasymboltable_linux.cc', | 107 'linux/alsasymboltable_linux.cc', |
(...skipping 144 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
252 'audio_device_tests.isolate', | 252 'audio_device_tests.isolate', |
253 ], | 253 ], |
254 }, | 254 }, |
255 ], | 255 ], |
256 }], | 256 }], |
257 ], | 257 ], |
258 }], # include_tests | 258 }], # include_tests |
259 ], | 259 ], |
260 } | 260 } |
261 | 261 |
OLD | NEW |