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

Side by Side Diff: chromecast/chromecast.gyp

Issue 1372393007: [Chromecast] Upgrade to new CMA backend API (Closed) Base URL: https://chromium.googlesource.com/chromium/src@master
Patch Set: Fix end_to_end test + address slan comments Created 5 years, 2 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 'cast_build_release': 'internal/build/cast_build_release', 9 'cast_build_release': 'internal/build/cast_build_release',
10 'cast_is_debug_build%': 0, 10 'cast_is_debug_build%': 0,
(...skipping 26 matching lines...) Expand all
37 'sources': [ 37 'sources': [
38 'public/avsettings.h', 38 'public/avsettings.h',
39 'public/cast_egl_platform.h', 39 'public/cast_egl_platform.h',
40 'public/cast_egl_platform_shlib.h', 40 'public/cast_egl_platform_shlib.h',
41 'public/cast_media_shlib.h', 41 'public/cast_media_shlib.h',
42 'public/cast_sys_info.h', 42 'public/cast_sys_info.h',
43 'public/chromecast_export.h', 43 'public/chromecast_export.h',
44 'public/graphics_properties_shlib.h', 44 'public/graphics_properties_shlib.h',
45 'public/graphics_types.h', 45 'public/graphics_types.h',
46 'public/media_codec_support.h', 46 'public/media_codec_support.h',
47 'public/media/audio_pipeline_device.h',
48 'public/media/cast_decoder_buffer.h', 47 'public/media/cast_decoder_buffer.h',
49 'public/media/cast_decrypt_config.h', 48 'public/media/cast_decrypt_config.h',
50 'public/media/cast_key_system.h', 49 'public/media/cast_key_system.h',
51 'public/media/decoder_config.h', 50 'public/media/decoder_config.h',
52 'public/media/decrypt_context.h', 51 'public/media/decrypt_context.h',
53 'public/media/media_clock_device.h',
54 'public/media/media_component_device.h',
55 'public/media/media_pipeline_backend.h', 52 'public/media/media_pipeline_backend.h',
56 'public/media/media_pipeline_device_params.h', 53 'public/media/media_pipeline_device_params.h',
57 'public/media/stream_id.h', 54 'public/media/stream_id.h',
58 'public/media/video_pipeline_device.h',
59 'public/osd_plane.h', 55 'public/osd_plane.h',
60 'public/osd_plane_shlib.h', 56 'public/osd_plane_shlib.h',
61 'public/osd_surface.h', 57 'public/osd_surface.h',
62 'public/task_runner.h', 58 'public/task_runner.h',
63 'public/video_plane.h', 59 'public/video_plane.h',
64 ], 60 ],
65 'direct_dependent_settings': { 61 'direct_dependent_settings': {
66 'include_dirs': [ 62 'include_dirs': [
67 'public/', 63 'public/',
68 ], 64 ],
(...skipping 622 matching lines...) Expand 10 before | Expand all | Expand 10 after
691 'browser/media/media_pipeline_host.cc', 687 'browser/media/media_pipeline_host.cc',
692 'browser/media/media_pipeline_host.h', 688 'browser/media/media_pipeline_host.h',
693 'common/media/cma_ipc_common.h', 689 'common/media/cma_ipc_common.h',
694 'common/media/cma_messages.h', 690 'common/media/cma_messages.h',
695 'common/media/cma_message_generator.cc', 691 'common/media/cma_message_generator.cc',
696 'common/media/cma_message_generator.h', 692 'common/media/cma_message_generator.h',
697 'common/media/cma_param_traits.cc', 693 'common/media/cma_param_traits.cc',
698 'common/media/cma_param_traits.h', 694 'common/media/cma_param_traits.h',
699 'common/media/shared_memory_chunk.cc', 695 'common/media/shared_memory_chunk.cc',
700 'common/media/shared_memory_chunk.h', 696 'common/media/shared_memory_chunk.h',
697 'renderer/media/audio_pipeline.cc',
698 'renderer/media/audio_pipeline.h',
701 'renderer/media/audio_pipeline_proxy.cc', 699 'renderer/media/audio_pipeline_proxy.cc',
702 'renderer/media/audio_pipeline_proxy.h', 700 'renderer/media/audio_pipeline_proxy.h',
703 'renderer/media/chromecast_media_renderer_factory.cc', 701 'renderer/media/chromecast_media_renderer_factory.cc',
704 'renderer/media/chromecast_media_renderer_factory.h', 702 'renderer/media/chromecast_media_renderer_factory.h',
705 'renderer/media/cma_message_filter_proxy.cc', 703 'renderer/media/cma_message_filter_proxy.cc',
706 'renderer/media/cma_message_filter_proxy.h', 704 'renderer/media/cma_message_filter_proxy.h',
707 'renderer/media/media_channel_proxy.cc', 705 'renderer/media/media_channel_proxy.cc',
708 'renderer/media/media_channel_proxy.h', 706 'renderer/media/media_channel_proxy.h',
709 'renderer/media/media_pipeline_proxy.cc', 707 'renderer/media/media_pipeline_proxy.cc',
710 'renderer/media/media_pipeline_proxy.h', 708 'renderer/media/media_pipeline_proxy.h',
709 'renderer/media/renderer_media_pipeline.h',
710 'renderer/media/video_pipeline.cc',
711 'renderer/media/video_pipeline.h',
711 'renderer/media/video_pipeline_proxy.cc', 712 'renderer/media/video_pipeline_proxy.cc',
712 'renderer/media/video_pipeline_proxy.h', 713 'renderer/media/video_pipeline_proxy.h',
713 ], 714 ],
714 }, # end of target 'cast_shell_media' 715 }, # end of target 'cast_shell_media'
715 # This target contains all of the primary code of |cast_shell|, except 716 # This target contains all of the primary code of |cast_shell|, except
716 # for |main|. This allows end-to-end tests using |cast_shell|. 717 # for |main|. This allows end-to-end tests using |cast_shell|.
717 # This also includes all targets that cannot be built on Android. 718 # This also includes all targets that cannot be built on Android.
718 { 719 {
719 'target_name': 'cast_shell_core', 720 'target_name': 'cast_shell_core',
720 'type': '<(component)', 721 'type': '<(component)',
(...skipping 27 matching lines...) Expand all
748 # TODO(dougsteed): remove when Chromecast moves to boringssl. 749 # TODO(dougsteed): remove when Chromecast moves to boringssl.
749 # Allow the cast shell to find the NSS module in the same 750 # Allow the cast shell to find the NSS module in the same
750 # directory. 751 # directory.
751 '-Wl,-rpath=\$$ORIGIN' 752 '-Wl,-rpath=\$$ORIGIN'
752 ], 753 ],
753 }, 754 },
754 ], # end of targets 755 ], # end of targets
755 }], 756 }],
756 ], # end of conditions 757 ], # end of conditions
757 } 758 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698