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

Side by Side Diff: media/cast/cast_testing.gypi

Issue 362123005: Cast: Update simulator tool with more inputs. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Diff Created 6 years, 5 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
OLDNEW
1 # Copyright 2014 The Chromium Authors. All rights reserved. 1 # Copyright 2014 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 { 5 {
6 'targets': [ 6 'targets': [
7 { 7 {
8 'target_name': 'cast_test_utility', 8 'target_name': 'cast_test_utility',
9 'type': 'static_library', 9 'type': 'static_library',
10 'include_dirs': [ 10 'include_dirs': [
11 '<(DEPTH)/', 11 '<(DEPTH)/',
12 ], 12 ],
13 'dependencies': [ 13 'dependencies': [
14 'cast_receiver', 14 'cast_receiver',
15 'cast_transport', 15 'cast_transport',
16 '<(DEPTH)/testing/gtest.gyp:gtest', 16 '<(DEPTH)/testing/gtest.gyp:gtest',
17 '<(DEPTH)/third_party/ffmpeg/ffmpeg.gyp:ffmpeg', 17 '<(DEPTH)/third_party/ffmpeg/ffmpeg.gyp:ffmpeg',
18 '<(DEPTH)/third_party/libyuv/libyuv.gyp:libyuv', 18 '<(DEPTH)/third_party/libyuv/libyuv.gyp:libyuv',
19 '<(DEPTH)/third_party/mt19937ar/mt19937ar.gyp:mt19937ar',
19 '<(DEPTH)/ui/gfx/gfx.gyp:gfx_geometry', 20 '<(DEPTH)/ui/gfx/gfx.gyp:gfx_geometry',
20 ], 21 ],
21 'sources': [ 22 'sources': [
22 'test/fake_media_source.cc', 23 'test/fake_media_source.cc',
23 'test/fake_media_source.h', 24 'test/fake_media_source.h',
24 'test/fake_single_thread_task_runner.cc', 25 'test/fake_single_thread_task_runner.cc',
25 'test/fake_single_thread_task_runner.h', 26 'test/fake_single_thread_task_runner.h',
26 'test/skewed_single_thread_task_runner.cc', 27 'test/skewed_single_thread_task_runner.cc',
27 'test/skewed_single_thread_task_runner.h', 28 'test/skewed_single_thread_task_runner.h',
28 'test/skewed_tick_clock.cc', 29 'test/skewed_tick_clock.cc',
29 'test/skewed_tick_clock.h', 30 'test/skewed_tick_clock.h',
31 'test/loopback_transport.cc',
32 'test/loopback_transport.h',
30 'test/utility/audio_utility.cc', 33 'test/utility/audio_utility.cc',
31 'test/utility/audio_utility.h', 34 'test/utility/audio_utility.h',
32 'test/utility/barcode.cc', 35 'test/utility/barcode.cc',
33 'test/utility/barcode.h', 36 'test/utility/barcode.h',
34 'test/utility/default_config.cc', 37 'test/utility/default_config.cc',
35 'test/utility/default_config.h', 38 'test/utility/default_config.h',
36 'test/utility/in_process_receiver.cc', 39 'test/utility/in_process_receiver.cc',
37 'test/utility/in_process_receiver.h', 40 'test/utility/in_process_receiver.h',
38 'test/utility/input_builder.cc', 41 'test/utility/input_builder.cc',
39 'test/utility/input_builder.h', 42 'test/utility/input_builder.h',
(...skipping 123 matching lines...) Expand 10 before | Expand all | Expand 10 after
163 ], 166 ],
164 }, 167 },
165 { 168 {
166 # This is a target for the collection of cast development tools. 169 # This is a target for the collection of cast development tools.
167 # They are built on bots but not shipped. 170 # They are built on bots but not shipped.
168 'target_name': 'cast_tools', 171 'target_name': 'cast_tools',
169 'type': 'none', 172 'type': 'none',
170 'dependencies': [ 173 'dependencies': [
171 'cast_receiver_app', 174 'cast_receiver_app',
172 'cast_sender_app', 175 'cast_sender_app',
176 'cast_simulator',
173 'udp_proxy', 177 'udp_proxy',
174 ], 178 ],
175 }, 179 },
176 { 180 {
177 'target_name': 'cast_receiver_app', 181 'target_name': 'cast_receiver_app',
178 'type': 'executable', 182 'type': 'executable',
179 'include_dirs': [ 183 'include_dirs': [
180 '<(DEPTH)/', 184 '<(DEPTH)/',
181 ], 185 ],
182 'dependencies': [ 186 'dependencies': [
(...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after
229 ], 233 ],
230 }, 234 },
231 { 235 {
232 'target_name': 'cast_simulator', 236 'target_name': 'cast_simulator',
233 'type': 'executable', 237 'type': 'executable',
234 'include_dirs': [ 238 'include_dirs': [
235 '<(DEPTH)/', 239 '<(DEPTH)/',
236 ], 240 ],
237 'dependencies': [ 241 'dependencies': [
238 'cast_base', 242 'cast_base',
243 'cast_network_model_proto',
239 'cast_sender', 244 'cast_sender',
240 'cast_test_utility', 245 'cast_test_utility',
241 'cast_transport', 246 'cast_transport',
242 '<(DEPTH)/net/net.gyp:net_test_support', 247 '<(DEPTH)/net/net.gyp:net_test_support',
243 '<(DEPTH)/media/media.gyp:media', 248 '<(DEPTH)/media/media.gyp:media',
244 '<(DEPTH)/testing/gtest.gyp:gtest', 249 '<(DEPTH)/testing/gtest.gyp:gtest',
245 '<(DEPTH)/third_party/ffmpeg/ffmpeg.gyp:ffmpeg', 250 '<(DEPTH)/third_party/ffmpeg/ffmpeg.gyp:ffmpeg',
246 '<(DEPTH)/third_party/opus/opus.gyp:opus', 251 '<(DEPTH)/third_party/opus/opus.gyp:opus',
247 '<(DEPTH)/ui/gfx/gfx.gyp:gfx_geometry', 252 '<(DEPTH)/ui/gfx/gfx.gyp:gfx_geometry',
248 ], 253 ],
249 'sources': [ 254 'sources': [
250 '<(DEPTH)/media/cast/test/simulator.cc', 255 '<(DEPTH)/media/cast/test/simulator.cc',
251 ], 256 ],
252 }, 257 },
253 { 258 {
259 # GN version: //media/cast/test/proto
260 'target_name': 'cast_network_model_proto',
261 'type': 'static_library',
262 'include_dirs': [
263 '<(DEPTH)/',
264 ],
265 'sources': [
266 'test/proto/network_simulation_model.proto',
267 ],
268 'variables': {
269 'proto_in_dir': 'test/proto',
270 'proto_out_dir': 'media/cast/test/proto',
271 },
272 'includes': ['../../build/protoc.gypi'],
273 },
274 {
254 'target_name': 'generate_barcode_video', 275 'target_name': 'generate_barcode_video',
255 'type': 'executable', 276 'type': 'executable',
256 'include_dirs': [ 277 'include_dirs': [
257 '<(DEPTH)/', 278 '<(DEPTH)/',
258 ], 279 ],
259 'dependencies': [ 280 'dependencies': [
260 'cast_test_utility', 281 'cast_test_utility',
261 '<(DEPTH)/base/base.gyp:base', 282 '<(DEPTH)/base/base.gyp:base',
262 '<(DEPTH)/media/media.gyp:media', 283 '<(DEPTH)/media/media.gyp:media',
263 ], 284 ],
(...skipping 28 matching lines...) Expand all
292 'cast_test_utility', 313 'cast_test_utility',
293 '<(DEPTH)/base/base.gyp:base', 314 '<(DEPTH)/base/base.gyp:base',
294 '<(DEPTH)/media/media.gyp:media', 315 '<(DEPTH)/media/media.gyp:media',
295 ], 316 ],
296 'sources': [ 317 'sources': [
297 'test/utility/udp_proxy_main.cc', 318 'test/utility/udp_proxy_main.cc',
298 ], 319 ],
299 } 320 }
300 ], # targets 321 ], # targets
301 } 322 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698