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

Side by Side Diff: chromecast/chromecast.gyp

Issue 814403002: [Chromecast] Add CmaMediaRendererFactory and IPC proxy components (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: 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/chromecast_switches.h » ('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 401 matching lines...) Expand 10 before | Expand all | Expand 10 after
412 }, # end of target 'cast_crash_client' 412 }, # end of target 'cast_crash_client'
413 { 413 {
414 'target_name': 'cast_shell_media', 414 'target_name': 'cast_shell_media',
415 'type': '<(component)', 415 'type': '<(component)',
416 'dependencies': [ 416 'dependencies': [
417 'media/media.gyp:cast_media', 417 'media/media.gyp:cast_media',
418 '../content/content.gyp:content', 418 '../content/content.gyp:content',
419 '../ipc/ipc.gyp:ipc', 419 '../ipc/ipc.gyp:ipc',
420 ], 420 ],
421 'sources': [ 421 'sources': [
422 'common/media/cma_ipc_common.h',
422 'common/media/cma_messages.h', 423 'common/media/cma_messages.h',
423 'common/media/cma_message_generator.cc', 424 'common/media/cma_message_generator.cc',
424 'common/media/cma_message_generator.h', 425 'common/media/cma_message_generator.h',
425 'common/media/cma_param_traits.cc', 426 'common/media/cma_param_traits.cc',
426 'common/media/cma_param_traits.h', 427 'common/media/cma_param_traits.h',
428 'common/media/shared_memory_chunk.cc',
429 'common/media/shared_memory_chunk.h',
430 'renderer/media/audio_pipeline_proxy.cc',
431 'renderer/media/audio_pipeline_proxy.h',
432 'renderer/media/cma_media_renderer_factory.cc',
433 'renderer/media/cma_media_renderer_factory.h',
434 'renderer/media/cma_message_filter_proxy.cc',
435 'renderer/media/cma_message_filter_proxy.h',
436 'renderer/media/media_channel_proxy.cc',
437 'renderer/media/media_channel_proxy.h',
438 'renderer/media/media_pipeline_proxy.cc',
439 'renderer/media/media_pipeline_proxy.h',
440 'renderer/media/video_pipeline_proxy.cc',
441 'renderer/media/video_pipeline_proxy.h',
427 ], 442 ],
428 }, # end of target 'cast_shell_media' 443 }, # end of target 'cast_shell_media'
429 # This target contains all of the primary code of |cast_shell|, except 444 # This target contains all of the primary code of |cast_shell|, except
430 # for |main|. This allows end-to-end tests using |cast_shell|. 445 # for |main|. This allows end-to-end tests using |cast_shell|.
431 # This also includes all targets that cannot be built on Android. 446 # This also includes all targets that cannot be built on Android.
432 { 447 {
433 'target_name': 'cast_shell_core', 448 'target_name': 'cast_shell_core',
434 'type': '<(component)', 449 'type': '<(component)',
435 'dependencies': [ 450 'dependencies': [
436 'cast_crash_client', 451 'cast_crash_client',
(...skipping 22 matching lines...) Expand all
459 'cast_shell_core', 474 'cast_shell_core',
460 ], 475 ],
461 'sources': [ 476 'sources': [
462 'app/cast_main.cc', 477 'app/cast_main.cc',
463 ], 478 ],
464 }, 479 },
465 ], # end of targets 480 ], # end of targets
466 }], 481 }],
467 ], # end of conditions 482 ], # end of conditions
468 } 483 }
OLDNEW
« no previous file with comments | « no previous file | chromecast/common/chromecast_switches.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698