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

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
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 158 matching lines...) Expand 10 before | Expand all | Expand 10 after
169 'common/cast_resource_delegate.h', 169 'common/cast_resource_delegate.h',
170 'common/chromecast_switches.cc', 170 'common/chromecast_switches.cc',
171 'common/chromecast_switches.h', 171 'common/chromecast_switches.h',
172 'common/platform_client_auth.h', 172 'common/platform_client_auth.h',
173 'common/pref_names.cc', 173 'common/pref_names.cc',
174 'common/pref_names.h', 174 'common/pref_names.h',
175 'renderer/cast_content_renderer_client.cc', 175 'renderer/cast_content_renderer_client.cc',
176 'renderer/cast_content_renderer_client.h', 176 'renderer/cast_content_renderer_client.h',
177 'renderer/key_systems_cast.cc', 177 'renderer/key_systems_cast.cc',
178 'renderer/key_systems_cast.h', 178 'renderer/key_systems_cast.h',
179 'renderer/media/audio_pipeline_proxy.cc',
gunsch 2014/12/20 22:41:33 Move these to 'cast_shell_media' below. Including
erickung1 2014/12/21 11:10:46 Done.
180 'renderer/media/audio_pipeline_proxy.h',
181 'renderer/media/cma_media_renderer_factory.cc',
182 'renderer/media/cma_media_renderer_factory.h',
183 'renderer/media/cma_message_filter_proxy.cc',
184 'renderer/media/cma_message_filter_proxy.h',
185 'renderer/media/media_channel_proxy.cc',
186 'renderer/media/media_channel_proxy.h',
187 'renderer/media/media_pipeline_proxy.cc',
188 'renderer/media/media_pipeline_proxy.h',
189 'renderer/media/video_pipeline_proxy.cc',
190 'renderer/media/video_pipeline_proxy.h',
191 'renderer/media/video_plane_proxy.cc',
192 'renderer/media/video_plane_proxy.h',
179 ], 193 ],
180 'conditions': [ 194 'conditions': [
181 ['chromecast_branding=="Chrome"', { 195 ['chromecast_branding=="Chrome"', {
182 'dependencies': [ 196 'dependencies': [
183 '<(cast_internal_gyp):cast_shell_internal', 197 '<(cast_internal_gyp):cast_shell_internal',
184 ], 198 ],
185 }, { 199 }, {
186 'sources': [ 200 'sources': [
187 'browser/cast_network_delegate_simple.cc', 201 'browser/cast_network_delegate_simple.cc',
188 'browser/devtools/remote_debugging_server_simple.cc', 202 'browser/devtools/remote_debugging_server_simple.cc',
(...skipping 223 matching lines...) Expand 10 before | Expand all | Expand 10 after
412 }, # end of target 'cast_crash_client' 426 }, # end of target 'cast_crash_client'
413 { 427 {
414 'target_name': 'cast_shell_media', 428 'target_name': 'cast_shell_media',
415 'type': '<(component)', 429 'type': '<(component)',
416 'dependencies': [ 430 'dependencies': [
417 'media/media.gyp:cast_media', 431 'media/media.gyp:cast_media',
418 '../content/content.gyp:content', 432 '../content/content.gyp:content',
419 '../ipc/ipc.gyp:ipc', 433 '../ipc/ipc.gyp:ipc',
420 ], 434 ],
421 'sources': [ 435 'sources': [
436 'common/media/cma_ipc_common.cc',
437 'common/media/cma_ipc_common.h',
422 'common/media/cma_messages.h', 438 'common/media/cma_messages.h',
423 'common/media/cma_message_generator.cc', 439 'common/media/cma_message_generator.cc',
424 'common/media/cma_message_generator.h', 440 'common/media/cma_message_generator.h',
425 'common/media/cma_param_traits.cc', 441 'common/media/cma_param_traits.cc',
426 'common/media/cma_param_traits.h', 442 'common/media/cma_param_traits.h',
443 'common/media/shared_memory_chunk.cc',
444 'common/media/shared_memory_chunk.h',
427 ], 445 ],
428 }, # end of target 'cast_shell_media' 446 }, # end of target 'cast_shell_media'
429 # This target contains all of the primary code of |cast_shell|, except 447 # This target contains all of the primary code of |cast_shell|, except
430 # for |main|. This allows end-to-end tests using |cast_shell|. 448 # for |main|. This allows end-to-end tests using |cast_shell|.
431 # This also includes all targets that cannot be built on Android. 449 # This also includes all targets that cannot be built on Android.
432 { 450 {
433 'target_name': 'cast_shell_core', 451 'target_name': 'cast_shell_core',
434 'type': '<(component)', 452 'type': '<(component)',
435 'dependencies': [ 453 'dependencies': [
436 'cast_crash_client', 454 'cast_crash_client',
(...skipping 22 matching lines...) Expand all
459 'cast_shell_core', 477 'cast_shell_core',
460 ], 478 ],
461 'sources': [ 479 'sources': [
462 'app/cast_main.cc', 480 'app/cast_main.cc',
463 ], 481 ],
464 }, 482 },
465 ], # end of targets 483 ], # end of targets
466 }], 484 }],
467 ], # end of conditions 485 ], # end of conditions
468 } 486 }
OLDNEW
« no previous file with comments | « no previous file | chromecast/common/chromecast_switches.h » ('j') | chromecast/common/media/cma_ipc_common.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698