blob: 58d892883e2507accf9566be5a260a380bc3d974 [file] [log] [blame]
ckehoea9408e142015-02-17 20:05:241# Copyright 2015 The Chromium Authors. All rights reserved.
2# Use of this source code is governed by a BSD-style license that can be
3# found in the LICENSE file.
4
5{
6 'targets': [
7 {
8 'target_name': 'audio_modem',
9 'type': 'static_library',
10 'dependencies': [
11 '../base/base.gyp:base',
12 '../content/content.gyp:content_common',
13 '../media/media.gyp:media',
14 '../media/media.gyp:shared_memory_support',
grunell9a73d762015-08-26 10:47:5915 '../third_party/webrtc/common_audio/common_audio.gyp:common_audio',
ckehoea9408e142015-02-17 20:05:2416 ],
17 'include_dirs': [
18 '..',
19 ],
20 'sources': [
21 # Note: sources list duplicated in GN build.
22 'audio_modem/audio_player.h',
23 'audio_modem/audio_player_impl.cc',
24 'audio_modem/audio_player_impl.h',
25 'audio_modem/audio_recorder.h',
26 'audio_modem/audio_recorder_impl.cc',
27 'audio_modem/audio_recorder_impl.h',
28 'audio_modem/constants.cc',
29 'audio_modem/modem_impl.cc',
30 'audio_modem/modem_impl.h',
31 'audio_modem/public/modem.h',
32 'audio_modem/public/audio_modem_types.h',
33 'audio_modem/public/whispernet_client.h',
34 'audio_modem/audio_modem_switches.cc',
35 'audio_modem/audio_modem_switches.h',
36 ],
37 },
38 {
39 'target_name': 'audio_modem_test_support',
40 'type': 'static_library',
41 'include_dirs': [
42 '..',
43 ],
44 'sources': [
45 'audio_modem/test/random_samples.cc',
46 'audio_modem/test/random_samples.h',
Charlie Kehoed5f5d112015-02-20 00:44:3447 'audio_modem/test/stub_modem.cc',
48 'audio_modem/test/stub_modem.h',
ckehoea9408e142015-02-17 20:05:2449 'audio_modem/test/stub_whispernet_client.cc',
50 'audio_modem/test/stub_whispernet_client.h',
51 ],
52 },
53 ],
54}