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

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: namespace 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
« no previous file with comments | « no previous file | media/cast/test/proto/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
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': [
(...skipping 222 matching lines...) Expand 10 before | Expand all | Expand 10 after
233 ], 233 ],
234 }, 234 },
235 { 235 {
236 'target_name': 'cast_simulator', 236 'target_name': 'cast_simulator',
237 'type': 'executable', 237 'type': 'executable',
238 'include_dirs': [ 238 'include_dirs': [
239 '<(DEPTH)/', 239 '<(DEPTH)/',
240 ], 240 ],
241 'dependencies': [ 241 'dependencies': [
242 'cast_base', 242 'cast_base',
243 'cast_network_model_proto',
243 'cast_sender', 244 'cast_sender',
244 'cast_test_utility', 245 'cast_test_utility',
245 'cast_transport', 246 'cast_transport',
246 '<(DEPTH)/net/net.gyp:net_test_support', 247 '<(DEPTH)/net/net.gyp:net_test_support',
247 '<(DEPTH)/media/media.gyp:media', 248 '<(DEPTH)/media/media.gyp:media',
248 '<(DEPTH)/testing/gtest.gyp:gtest', 249 '<(DEPTH)/testing/gtest.gyp:gtest',
249 '<(DEPTH)/third_party/ffmpeg/ffmpeg.gyp:ffmpeg', 250 '<(DEPTH)/third_party/ffmpeg/ffmpeg.gyp:ffmpeg',
250 '<(DEPTH)/third_party/opus/opus.gyp:opus', 251 '<(DEPTH)/third_party/opus/opus.gyp:opus',
251 '<(DEPTH)/ui/gfx/gfx.gyp:gfx_geometry', 252 '<(DEPTH)/ui/gfx/gfx.gyp:gfx_geometry',
252 ], 253 ],
253 'sources': [ 254 'sources': [
254 '<(DEPTH)/media/cast/test/simulator.cc', 255 '<(DEPTH)/media/cast/test/simulator.cc',
255 ], 256 ],
256 }, 257 },
257 { 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 {
258 'target_name': 'generate_barcode_video', 275 'target_name': 'generate_barcode_video',
259 'type': 'executable', 276 'type': 'executable',
260 'include_dirs': [ 277 'include_dirs': [
261 '<(DEPTH)/', 278 '<(DEPTH)/',
262 ], 279 ],
263 'dependencies': [ 280 'dependencies': [
264 'cast_test_utility', 281 'cast_test_utility',
265 '<(DEPTH)/base/base.gyp:base', 282 '<(DEPTH)/base/base.gyp:base',
266 '<(DEPTH)/media/media.gyp:media', 283 '<(DEPTH)/media/media.gyp:media',
267 ], 284 ],
(...skipping 28 matching lines...) Expand all
296 'cast_test_utility', 313 'cast_test_utility',
297 '<(DEPTH)/base/base.gyp:base', 314 '<(DEPTH)/base/base.gyp:base',
298 '<(DEPTH)/media/media.gyp:media', 315 '<(DEPTH)/media/media.gyp:media',
299 ], 316 ],
300 'sources': [ 317 'sources': [
301 'test/utility/udp_proxy_main.cc', 318 'test/utility/udp_proxy_main.cc',
302 ], 319 ],
303 } 320 }
304 ], # targets 321 ], # targets
305 } 322 }
OLDNEW
« no previous file with comments | « no previous file | media/cast/test/proto/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698