blob: eb50bb6ec75ecb6919d09777fa7badfd92d966b1 [file] [log] [blame]
andresp@webrtc.org749c6022015-02-25 11:50:17 +00001# Copyright (c) 2011 The WebRTC project authors. All Rights Reserved.
2#
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
5# tree. An additional intellectual property rights grant can be found
6# in the file PATENTS. All contributing project authors may
7# be found in the AUTHORS file in the root of the source tree.
8
9{
10 'targets': [
11 {
12 'target_name': 'webrtc_utility',
13 'type': 'static_library',
14 'dependencies': [
15 'audio_coding_module',
16 'media_file',
tommi435f98b2016-05-28 14:57:15 -070017 '<(webrtc_root)/base/base.gyp:rtc_task_queue',
andresp@webrtc.org749c6022015-02-25 11:50:17 +000018 '<(webrtc_root)/common_audio/common_audio.gyp:common_audio',
19 '<(webrtc_root)/system_wrappers/system_wrappers.gyp:system_wrappers',
20 ],
21 'sources': [
Henrik Kjellanderff761fb2015-11-04 08:31:52 +010022 'include/audio_frame_operations.h',
kwiberg9d7eb132016-08-16 04:08:30 -070023 'include/file_player.h',
24 'include/file_recorder.h',
Henrik Kjellanderff761fb2015-11-04 08:31:52 +010025 'include/helpers_android.h',
26 'include/helpers_ios.h',
27 'include/jvm_android.h',
28 'include/process_thread.h',
andresp@webrtc.org749c6022015-02-25 11:50:17 +000029 'source/audio_frame_operations.cc',
kwiberg9d7eb132016-08-16 04:08:30 -070030 'source/coder.cc',
31 'source/coder.h',
kwiberg144dd272016-08-17 02:46:53 -070032 'source/file_player.cc',
33 'source/file_recorder.cc',
andresp@webrtc.org749c6022015-02-25 11:50:17 +000034 'source/helpers_android.cc',
henrikaba35d052015-07-14 17:04:08 +020035 'source/helpers_ios.mm',
henrikab2619892015-05-18 16:49:16 +020036 'source/jvm_android.cc',
andresp@webrtc.org749c6022015-02-25 11:50:17 +000037 'source/process_thread_impl.cc',
38 'source/process_thread_impl.h',
andresp@webrtc.org749c6022015-02-25 11:50:17 +000039 ],
andresp@webrtc.org749c6022015-02-25 11:50:17 +000040 },
41 ], # targets
42}