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 ], |
| 16 'include_dirs': [ |
| 17 '..', |
| 18 ], |
| 19 'sources': [ |
| 20 # Note: sources list duplicated in GN build. |
| 21 'audio_modem/audio_player.h', |
| 22 'audio_modem/audio_player_impl.cc', |
| 23 'audio_modem/audio_player_impl.h', |
| 24 'audio_modem/audio_recorder.h', |
| 25 'audio_modem/audio_recorder_impl.cc', |
| 26 'audio_modem/audio_recorder_impl.h', |
| 27 'audio_modem/constants.cc', |
| 28 'audio_modem/modem_impl.cc', |
| 29 'audio_modem/modem_impl.h', |
| 30 'audio_modem/public/modem.h', |
| 31 'audio_modem/public/audio_modem_types.h', |
| 32 'audio_modem/public/whispernet_client.h', |
| 33 'audio_modem/audio_modem_switches.cc', |
| 34 'audio_modem/audio_modem_switches.h', |
| 35 ], |
| 36 }, |
| 37 { |
| 38 'target_name': 'audio_modem_test_support', |
| 39 'type': 'static_library', |
| 40 'include_dirs': [ |
| 41 '..', |
| 42 ], |
| 43 'sources': [ |
| 44 'audio_modem/test/random_samples.cc', |
| 45 'audio_modem/test/random_samples.h', |
| 46 'audio_modem/test/stub_whispernet_client.cc', |
| 47 'audio_modem/test/stub_whispernet_client.h', |
| 48 ], |
| 49 }, |
| 50 ], |
| 51 } |
OLD | NEW |