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 96 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
107 'android/audio_record_jni.cc', | 107 'android/audio_record_jni.cc', |
108 'android/audio_record_jni.h', | 108 'android/audio_record_jni.h', |
109 'android/audio_track_jni.cc', | 109 'android/audio_track_jni.cc', |
110 'android/audio_track_jni.h', | 110 'android/audio_track_jni.h', |
111 'android/build_info.cc', | 111 'android/build_info.cc', |
112 'android/build_info.h', | 112 'android/build_info.h', |
113 'android/opensles_common.cc', | 113 'android/opensles_common.cc', |
114 'android/opensles_common.h', | 114 'android/opensles_common.h', |
115 'android/opensles_player.cc', | 115 'android/opensles_player.cc', |
116 'android/opensles_player.h', | 116 'android/opensles_player.h', |
| 117 'android/opensles_recorder.cc', |
| 118 'android/opensles_recorder.h', |
117 ], | 119 ], |
118 'link_settings': { | 120 'link_settings': { |
119 'libraries': [ | 121 'libraries': [ |
120 '-llog', | 122 '-llog', |
121 '-lOpenSLES', | 123 '-lOpenSLES', |
122 ], | 124 ], |
123 }, | 125 }, |
124 }], | 126 }], |
125 ['OS=="linux"', { | 127 ['OS=="linux"', { |
126 'sources': [ | 128 'sources': [ |
(...skipping 148 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
275 'sources': [ | 277 'sources': [ |
276 'test/audio_device_test_api.cc', | 278 'test/audio_device_test_api.cc', |
277 'test/audio_device_test_defines.h', | 279 'test/audio_device_test_defines.h', |
278 ], | 280 ], |
279 }, | 281 }, |
280 ], # targets | 282 ], # targets |
281 }], # include_tests==1 and OS!=ios | 283 }], # include_tests==1 and OS!=ios |
282 ], | 284 ], |
283 } | 285 } |
284 | 286 |
OLD | NEW |