blob: 51ee624e3a8dfbd1f3e08e6cd0d9c6056c934cc0 [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',
17 '<(webrtc_root)/common_audio/common_audio.gyp:common_audio',
18 '<(webrtc_root)/system_wrappers/system_wrappers.gyp:system_wrappers',
19 ],
20 'sources': [
21 'interface/audio_frame_operations.h',
22 'interface/file_player.h',
23 'interface/file_recorder.h',
24 'interface/helpers_android.h',
henrikab2619892015-05-18 16:49:16 +020025 'interface/jvm_android.h',
andresp@webrtc.org749c6022015-02-25 11:50:17 +000026 'interface/process_thread.h',
27 'interface/rtp_dump.h',
28 'source/audio_frame_operations.cc',
29 'source/coder.cc',
30 'source/coder.h',
31 'source/file_player_impl.cc',
32 'source/file_player_impl.h',
33 'source/file_recorder_impl.cc',
34 'source/file_recorder_impl.h',
35 'source/helpers_android.cc',
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',
39 'source/rtp_dump_impl.cc',
40 'source/rtp_dump_impl.h',
41 ],
andresp@webrtc.org749c6022015-02-25 11:50:17 +000042 },
43 ], # targets
44}