Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(44)

Side by Side Diff: components/audio_modem.gypi

Issue 865483005: Creating the audio_modem component (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Merging again Created 5 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « chrome/chrome_browser_extensions.gypi ('k') | components/audio_modem/BUILD.gn » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(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 }
OLDNEW
« no previous file with comments | « chrome/chrome_browser_extensions.gypi ('k') | components/audio_modem/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698