diff options
author | imcheng@chromium.org <imcheng@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-06-25 04:45:44 +0000 |
---|---|---|
committer | imcheng@chromium.org <imcheng@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-06-25 04:45:44 +0000 |
commit | 26d44597b18c64475c2834bb8083adf042afee75 (patch) | |
tree | 85683e7291db232839da4366411776472f2ef6d8 /media/cast/cast_testing.gypi | |
parent | 4efad8f7cee3691157a3396cfeb8831a3272777d (diff) | |
download | chromium_src-26d44597b18c64475c2834bb8083adf042afee75.zip chromium_src-26d44597b18c64475c2834bb8083adf042afee75.tar.gz chromium_src-26d44597b18c64475c2834bb8083adf042afee75.tar.bz2 |
[Cast] A really simple skeleton mirror session simulation executable.
The program takes arguments simulation run id (to be used as tags) and
a file path and writes out a line to the given file path.
The end goal is to also provide simulation parameters and then have the
program simulate a session using the parameters, and at the end write
out the raw event log to the given path with the given sim run id tag.
Review URL: https://codereview.chromium.org/355523002
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@279587 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'media/cast/cast_testing.gypi')
-rw-r--r-- | media/cast/cast_testing.gypi | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/media/cast/cast_testing.gypi b/media/cast/cast_testing.gypi index aef0fbd..31ed3f0 100644 --- a/media/cast/cast_testing.gypi +++ b/media/cast/cast_testing.gypi @@ -226,6 +226,28 @@ ], }, { + 'target_name': 'cast_simulator', + 'type': 'executable', + 'include_dirs': [ + '<(DEPTH)/', + ], + 'dependencies': [ + 'cast_base', + 'cast_sender', + 'cast_test_utility', + 'cast_transport', + '<(DEPTH)/net/net.gyp:net_test_support', + '<(DEPTH)/media/media.gyp:media', + '<(DEPTH)/testing/gtest.gyp:gtest', + '<(DEPTH)/third_party/ffmpeg/ffmpeg.gyp:ffmpeg', + '<(DEPTH)/third_party/opus/opus.gyp:opus', + '<(DEPTH)/ui/gfx/gfx.gyp:gfx_geometry', + ], + 'sources': [ + '<(DEPTH)/media/cast/test/simulator.cc', + ], + }, + { 'target_name': 'generate_barcode_video', 'type': 'executable', 'include_dirs': [ |