| OLD | NEW |
| (Empty) |
| 1 # 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', | |
| 15 '../third_party/webrtc/common_audio/common_audio.gyp:common_audio', | |
| 16 ], | |
| 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', | |
| 47 'audio_modem/test/stub_modem.cc', | |
| 48 'audio_modem/test/stub_modem.h', | |
| 49 'audio_modem/test/stub_whispernet_client.cc', | |
| 50 'audio_modem/test/stub_whispernet_client.h', | |
| 51 ], | |
| 52 }, | |
| 53 ], | |
| 54 } | |
| OLD | NEW |