OLD | NEW |
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 Loading... |
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 Loading... |
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 } |
OLD | NEW |