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

Unified 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chrome/chrome_browser_extensions.gypi ('k') | components/audio_modem/BUILD.gn » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/audio_modem.gypi
diff --git a/components/audio_modem.gypi b/components/audio_modem.gypi
new file mode 100644
index 0000000000000000000000000000000000000000..79d2dbe099afe373b924b727da5681be00ca8936
--- /dev/null
+++ b/components/audio_modem.gypi
@@ -0,0 +1,51 @@
+# Copyright 2015 The Chromium Authors. All rights reserved.
+# Use of this source code is governed by a BSD-style license that can be
+# found in the LICENSE file.
+
+{
+ 'targets': [
+ {
+ 'target_name': 'audio_modem',
+ 'type': 'static_library',
+ 'dependencies': [
+ '../base/base.gyp:base',
+ '../content/content.gyp:content_common',
+ '../media/media.gyp:media',
+ '../media/media.gyp:shared_memory_support',
+ ],
+ 'include_dirs': [
+ '..',
+ ],
+ 'sources': [
+ # Note: sources list duplicated in GN build.
+ 'audio_modem/audio_player.h',
+ 'audio_modem/audio_player_impl.cc',
+ 'audio_modem/audio_player_impl.h',
+ 'audio_modem/audio_recorder.h',
+ 'audio_modem/audio_recorder_impl.cc',
+ 'audio_modem/audio_recorder_impl.h',
+ 'audio_modem/constants.cc',
+ 'audio_modem/modem_impl.cc',
+ 'audio_modem/modem_impl.h',
+ 'audio_modem/public/modem.h',
+ 'audio_modem/public/audio_modem_types.h',
+ 'audio_modem/public/whispernet_client.h',
+ 'audio_modem/audio_modem_switches.cc',
+ 'audio_modem/audio_modem_switches.h',
+ ],
+ },
+ {
+ 'target_name': 'audio_modem_test_support',
+ 'type': 'static_library',
+ 'include_dirs': [
+ '..',
+ ],
+ 'sources': [
+ 'audio_modem/test/random_samples.cc',
+ 'audio_modem/test/random_samples.h',
+ 'audio_modem/test/stub_whispernet_client.cc',
+ 'audio_modem/test/stub_whispernet_client.h',
+ ],
+ },
+ ],
+}
« 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