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

Side by Side Diff: chromecast/chromecast.gyp

Issue 797793004: Chromecast: IPC messages for browser-based media pipeline. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase Created 6 years 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 | chromecast/common/media/DEPS » ('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 'variables': { 6 'variables': {
7 'android_support_v13_target%': 7 'android_support_v13_target%':
8 '../third_party/android_tools/android_tools.gyp:android_support_v13_java lib', 8 '../third_party/android_tools/android_tools.gyp:android_support_v13_java lib',
9 'chromium_code': 1, 9 'chromium_code': 1,
10 'chromecast_branding%': 'Chromium', 10 'chromecast_branding%': 'Chromium',
(...skipping 392 matching lines...) Expand 10 before | Expand all | Expand 10 after
403 'dependencies': [ 403 'dependencies': [
404 '<(cast_internal_gyp):crash_internal', 404 '<(cast_internal_gyp):crash_internal',
405 ], 405 ],
406 }, { 406 }, {
407 'sources': [ 407 'sources': [
408 'crash/cast_crash_reporter_client_simple.cc', 408 'crash/cast_crash_reporter_client_simple.cc',
409 ], 409 ],
410 }], 410 }],
411 ] 411 ]
412 }, # end of target 'cast_crash_client' 412 }, # end of target 'cast_crash_client'
413 {
414 'target_name': 'cast_shell_media',
415 'type': '<(component)',
416 'dependencies': [
417 'media/media.gyp:cast_media',
418 '../content/content.gyp:content',
419 '../ipc/ipc.gyp:ipc',
420 ],
421 'sources': [
422 'common/media/cma_messages.h',
423 'common/media/cma_message_generator.cc',
424 'common/media/cma_message_generator.h',
425 'common/media/cma_param_traits.cc',
426 'common/media/cma_param_traits.h',
427 ],
428 }, # end of target 'cast_shell_media'
413 # This target contains all of the primary code of |cast_shell|, except 429 # This target contains all of the primary code of |cast_shell|, except
414 # for |main|. This allows end-to-end tests using |cast_shell|. 430 # for |main|. This allows end-to-end tests using |cast_shell|.
415 # This also includes all targets that cannot be built on Android. 431 # This also includes all targets that cannot be built on Android.
416 { 432 {
417 'target_name': 'cast_shell_core', 433 'target_name': 'cast_shell_core',
418 'type': '<(component)', 434 'type': '<(component)',
419 'dependencies': [ 435 'dependencies': [
420 'cast_crash_client', 436 'cast_crash_client',
421 'cast_net', 437 'cast_net',
438 'cast_shell_media',
422 'cast_shell_common', 439 'cast_shell_common',
423 'media/media.gyp:cast_media', 440 'media/media.gyp:cast_media',
424 '../ui/aura/aura.gyp:aura_test_support', 441 '../ui/aura/aura.gyp:aura_test_support',
425 ], 442 ],
426 'conditions': [ 443 'conditions': [
427 ['chromecast_branding=="Chrome"', { 444 ['chromecast_branding=="Chrome"', {
428 'dependencies': [ 445 'dependencies': [
429 '<(cast_internal_gyp):cast_gfx_internal', 446 '<(cast_internal_gyp):cast_gfx_internal',
430 ], 447 ],
431 }, { 448 }, {
(...skipping 10 matching lines...) Expand all
442 'cast_shell_core', 459 'cast_shell_core',
443 ], 460 ],
444 'sources': [ 461 'sources': [
445 'app/cast_main.cc', 462 'app/cast_main.cc',
446 ], 463 ],
447 }, 464 },
448 ], # end of targets 465 ], # end of targets
449 }], 466 }],
450 ], # end of conditions 467 ], # end of conditions
451 } 468 }
OLDNEW
« no previous file with comments | « no previous file | chromecast/common/media/DEPS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698