blob: 2f09657da8ba1ed0802611f73ff58f7106f7ce82 [file] [log] [blame]
xians@google.comd3185fe2011-09-12 12:24:39 +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.
niklase@google.com470e71d2011-07-07 08:21:25 +00008
9{
niklase@google.com470e71d2011-07-07 08:21:25 +000010 'targets': [
11 {
12 'target_name': 'webrtc_utility',
wjia@webrtc.orga3c82bf2013-01-18 23:42:21 +000013 'type': 'static_library',
niklase@google.com470e71d2011-07-07 08:21:25 +000014 'dependencies': [
xians@google.comd3185fe2011-09-12 12:24:39 +000015 'audio_coding_module',
fischman@webrtc.orgf696f252013-08-05 18:45:19 +000016 'media_file',
andrew@webrtc.org34235372013-04-30 23:43:26 +000017 '<(webrtc_root)/common_audio/common_audio.gyp:common_audio',
xians@google.comd3185fe2011-09-12 12:24:39 +000018 '<(webrtc_root)/system_wrappers/source/system_wrappers.gyp:system_wrappers',
niklase@google.com470e71d2011-07-07 08:21:25 +000019 ],
niklase@google.com470e71d2011-07-07 08:21:25 +000020 'sources': [
niklas.enbom@webrtc.org0cb79cc2012-05-30 14:32:42 +000021 '../interface/audio_frame_operations.h',
niklase@google.com470e71d2011-07-07 08:21:25 +000022 '../interface/file_player.h',
23 '../interface/file_recorder.h',
fischman@webrtc.org4e65e072013-10-03 18:23:13 +000024 '../interface/helpers_android.h',
niklase@google.com470e71d2011-07-07 08:21:25 +000025 '../interface/process_thread.h',
26 '../interface/rtp_dump.h',
andrew@webrtc.org459955f2012-05-29 22:13:14 +000027 'audio_frame_operations.cc',
niklase@google.com470e71d2011-07-07 08:21:25 +000028 'coder.cc',
29 'coder.h',
30 'file_player_impl.cc',
31 'file_player_impl.h',
32 'file_recorder_impl.cc',
33 'file_recorder_impl.h',
fischman@webrtc.org4e65e072013-10-03 18:23:13 +000034 'helpers_android.cc',
niklase@google.com470e71d2011-07-07 08:21:25 +000035 'process_thread_impl.cc',
36 'process_thread_impl.h',
37 'rtp_dump_impl.cc',
38 'rtp_dump_impl.h',
andrew@webrtc.org830099e2011-08-31 17:03:54 +000039 ],
40 'conditions': [
41 ['enable_video==1', {
andrew@webrtc.org830099e2011-08-31 17:03:54 +000042 'dependencies': [
xians@google.comd3185fe2011-09-12 12:24:39 +000043 'webrtc_video_coding',
andrew@webrtc.org830099e2011-08-31 17:03:54 +000044 ],
andrew@webrtc.org830099e2011-08-31 17:03:54 +000045 'sources': [
46 'frame_scaler.cc',
47 'video_coder.cc',
48 'video_frames_queue.cc',
49 ],
50 }],
niklase@google.com470e71d2011-07-07 08:21:25 +000051 ],
52 },
kjellander@webrtc.orgd492f722011-11-24 07:20:00 +000053 ], # targets
niklase@google.com470e71d2011-07-07 08:21:25 +000054}