OLD | NEW |
1 # Copyright (c) 2011 The WebRTC project authors. All Rights Reserved. | 1 # Copyright (c) 2011 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': [ |
11 { | 11 { |
12 'target_name': 'webrtc_utility', | 12 'target_name': 'webrtc_utility', |
13 'type': 'static_library', | 13 'type': 'static_library', |
14 'dependencies': [ | 14 'dependencies': [ |
15 'audio_coding_module', | 15 'audio_coding_module', |
| 16 'builtin_audio_decoder_factory', |
16 'media_file', | 17 'media_file', |
| 18 'rent_a_codec', |
17 '<(webrtc_root)/base/base.gyp:rtc_task_queue', | 19 '<(webrtc_root)/base/base.gyp:rtc_task_queue', |
18 '<(webrtc_root)/common_audio/common_audio.gyp:common_audio', | 20 '<(webrtc_root)/common_audio/common_audio.gyp:common_audio', |
19 '<(webrtc_root)/system_wrappers/system_wrappers.gyp:system_wrappers', | 21 '<(webrtc_root)/system_wrappers/system_wrappers.gyp:system_wrappers', |
20 ], | 22 ], |
21 'sources': [ | 23 'sources': [ |
22 'include/audio_frame_operations.h', | 24 'include/audio_frame_operations.h', |
23 'include/file_player.h', | 25 'include/file_player.h', |
24 'include/file_recorder.h', | 26 'include/file_recorder.h', |
25 'include/helpers_android.h', | 27 'include/helpers_android.h', |
26 'include/helpers_ios.h', | 28 'include/helpers_ios.h', |
27 'include/jvm_android.h', | 29 'include/jvm_android.h', |
28 'include/process_thread.h', | 30 'include/process_thread.h', |
29 'source/audio_frame_operations.cc', | 31 'source/audio_frame_operations.cc', |
30 'source/coder.cc', | 32 'source/coder.cc', |
31 'source/coder.h', | 33 'source/coder.h', |
32 'source/file_player.cc', | 34 'source/file_player.cc', |
33 'source/file_recorder.cc', | 35 'source/file_recorder.cc', |
34 'source/helpers_android.cc', | 36 'source/helpers_android.cc', |
35 'source/helpers_ios.mm', | 37 'source/helpers_ios.mm', |
36 'source/jvm_android.cc', | 38 'source/jvm_android.cc', |
37 'source/process_thread_impl.cc', | 39 'source/process_thread_impl.cc', |
38 'source/process_thread_impl.h', | 40 'source/process_thread_impl.h', |
39 ], | 41 ], |
40 }, | 42 }, |
| 43 |
| 44 # GN target webrtc/modules/utility:audio_frame_operations |
| 45 { |
| 46 'target_name': 'audio_frame_operations', |
| 47 'type': 'static_library', |
| 48 'dependencies': [ |
| 49 '<(webrtc_root)/base/base.gyp:rtc_base_approved', |
| 50 '<(webrtc_root)/common.gyp:webrtc_common', |
| 51 ] |
| 52 }, |
41 ], # targets | 53 ], # targets |
42 } | 54 } |
OLD | NEW |