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

Side by Side Diff: chromecast/chromecast.gyp

Issue 823923002: [Chromecast] Add IPC code on brower process side (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 12 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 '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 405 matching lines...) Expand 10 before | Expand all | Expand 10 after
416 }, # end of target 'cast_crash_client' 416 }, # end of target 'cast_crash_client'
417 { 417 {
418 'target_name': 'cast_shell_media', 418 'target_name': 'cast_shell_media',
419 'type': '<(component)', 419 'type': '<(component)',
420 'dependencies': [ 420 'dependencies': [
421 'media/media.gyp:cast_media', 421 'media/media.gyp:cast_media',
422 '../content/content.gyp:content', 422 '../content/content.gyp:content',
423 '../ipc/ipc.gyp:ipc', 423 '../ipc/ipc.gyp:ipc',
424 ], 424 ],
425 'sources': [ 425 'sources': [
426 'browser/media/cma_message_filter_host.cc',
427 'browser/media/cma_message_filter_host.h',
428 'browser/media/cma_message_loop.cc',
429 'browser/media/cma_message_loop.h',
430 'browser/media/media_pipeline_host.cc',
431 'browser/media/media_pipeline_host.h',
426 'common/media/cma_ipc_common.h', 432 'common/media/cma_ipc_common.h',
427 'common/media/cma_messages.h', 433 'common/media/cma_messages.h',
428 'common/media/cma_message_generator.cc', 434 'common/media/cma_message_generator.cc',
429 'common/media/cma_message_generator.h', 435 'common/media/cma_message_generator.h',
430 'common/media/cma_param_traits.cc', 436 'common/media/cma_param_traits.cc',
431 'common/media/cma_param_traits.h', 437 'common/media/cma_param_traits.h',
432 'common/media/shared_memory_chunk.cc', 438 'common/media/shared_memory_chunk.cc',
433 'common/media/shared_memory_chunk.h', 439 'common/media/shared_memory_chunk.h',
434 'renderer/media/audio_pipeline_proxy.cc', 440 'renderer/media/audio_pipeline_proxy.cc',
435 'renderer/media/audio_pipeline_proxy.h', 441 'renderer/media/audio_pipeline_proxy.h',
(...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after
478 'cast_shell_core', 484 'cast_shell_core',
479 ], 485 ],
480 'sources': [ 486 'sources': [
481 'app/cast_main.cc', 487 'app/cast_main.cc',
482 ], 488 ],
483 }, 489 },
484 ], # end of targets 490 ], # end of targets
485 }], 491 }],
486 ], # end of conditions 492 ], # end of conditions
487 } 493 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698