diff options
author | hubbe@chromium.org <hubbe@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-03-13 01:45:15 +0000 |
---|---|---|
committer | hubbe@chromium.org <hubbe@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-03-13 01:45:15 +0000 |
commit | e432b1f8880d04e8186a0ce6bba691aa4f5a6672 (patch) | |
tree | 81cc58da8bcfa0f65140c9a060db8b25ec7d7149 /media/cast/cast.gyp | |
parent | 3b93ca6e6981c54ac6d3e3eade22ffa30186678f (diff) | |
download | chromium_src-e432b1f8880d04e8186a0ce6bba691aa4f5a6672.zip chromium_src-e432b1f8880d04e8186a0ce6bba691aa4f5a6672.tar.gz chromium_src-e432b1f8880d04e8186a0ce6bba691aa4f5a6672.tar.bz2 |
Helper functions and binary for encoding timestamps into audio.
These functions and binaries will be used to test the audio mirroring
pipeline. They allow to encode and decode 16 bit numbers into a short
blip of audio that should be decodable even when compressed
and uncompressed.
Review URL: https://codereview.chromium.org/178473021
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@256728 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'media/cast/cast.gyp')
-rw-r--r-- | media/cast/cast.gyp | 24 |
1 files changed, 4 insertions, 20 deletions
diff --git a/media/cast/cast.gyp b/media/cast/cast.gyp index 02b991d..ef67982 100644 --- a/media/cast/cast.gyp +++ b/media/cast/cast.gyp @@ -8,23 +8,6 @@ 'chromium_code': 1, }, 'targets': [ - { - 'target_name': 'cast_config', - 'type': 'static_library', - 'include_dirs': [ - '<(DEPTH)/', - ], - 'dependencies': [ - '<(DEPTH)/base/base.gyp:base', - ], - 'sources': [ - 'cast_config.cc', - 'cast_config.h', - 'cast_defines.h', - 'cast_environment.cc', - 'cast_environment.h', - ], # source - }, ], # targets, 'conditions': [ ['include_tests==1', { @@ -33,7 +16,7 @@ 'target_name': 'cast_unittests', 'type': '<(gtest_target_type)', 'dependencies': [ - 'cast_config', + 'cast_config.gyp:cast_config', 'cast_receiver.gyp:cast_receiver', 'cast_sender.gyp:cast_sender', 'logging/logging.gyp:cast_log_analysis', @@ -89,6 +72,7 @@ 'test/fake_single_thread_task_runner.h', 'test/fake_video_encode_accelerator.cc', 'test/fake_video_encode_accelerator.h', + 'test/utility/audio_utility_unittest.cc', 'test/utility/barcode_unittest.cc', 'transport/cast_transport_sender_impl_unittest.cc', 'transport/pacing/mock_paced_packet_sender.cc', @@ -113,7 +97,7 @@ '<(DEPTH)/', ], 'dependencies': [ - 'cast_config', + 'cast_config.gyp:cast_config', 'logging/logging.gyp:sender_logging', '<(DEPTH)/ui/gfx/gfx.gyp:gfx', '<(DEPTH)/net/net.gyp:net_test_support', @@ -135,7 +119,7 @@ '<(DEPTH)/', ], 'dependencies': [ - 'cast_config', + 'cast_config.gyp:cast_config', '<(DEPTH)/ui/gfx/gfx.gyp:gfx', '<(DEPTH)/net/net.gyp:net_test_support', '<(DEPTH)/media/cast/cast_receiver.gyp:*', |