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

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: Address alokp@ 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
« no previous file with comments | « chromecast/browser/media/media_pipeline_host.cc ('k') | chromecast/chromecast_tests.gypi » ('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 '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 38 matching lines...) Expand 10 before | Expand all | Expand 10 after
49 'sources': [ 49 'sources': [
50 'public/avsettings.h', 50 'public/avsettings.h',
51 'public/cast_egl_platform.h', 51 'public/cast_egl_platform.h',
52 'public/cast_egl_platform_shlib.h', 52 'public/cast_egl_platform_shlib.h',
53 'public/cast_media_shlib.h', 53 'public/cast_media_shlib.h',
54 'public/cast_sys_info.h', 54 'public/cast_sys_info.h',
55 'public/chromecast_export.h', 55 'public/chromecast_export.h',
56 'public/graphics_properties_shlib.h', 56 'public/graphics_properties_shlib.h',
57 'public/graphics_types.h', 57 'public/graphics_types.h',
58 'public/media_codec_support.h', 58 'public/media_codec_support.h',
59 'public/media/audio_pipeline_device.h',
60 'public/media/cast_decoder_buffer.h', 59 'public/media/cast_decoder_buffer.h',
61 'public/media/cast_decrypt_config.h', 60 'public/media/cast_decrypt_config.h',
62 'public/media/cast_key_system.h', 61 'public/media/cast_key_system.h',
63 'public/media/decoder_config.h', 62 'public/media/decoder_config.h',
64 'public/media/decrypt_context.h', 63 'public/media/decrypt_context.h',
65 'public/media/media_clock_device.h',
66 'public/media/media_component_device.h',
67 'public/media/media_pipeline_backend.h', 64 'public/media/media_pipeline_backend.h',
68 'public/media/media_pipeline_device_params.h', 65 'public/media/media_pipeline_device_params.h',
69 'public/media/stream_id.h', 66 'public/media/stream_id.h',
70 'public/media/video_pipeline_device.h',
71 'public/osd_plane.h', 67 'public/osd_plane.h',
72 'public/osd_plane_shlib.h', 68 'public/osd_plane_shlib.h',
73 'public/osd_surface.h', 69 'public/osd_surface.h',
74 'public/task_runner.h', 70 'public/task_runner.h',
75 'public/video_plane.h', 71 'public/video_plane.h',
76 ], 72 ],
77 'direct_dependent_settings': { 73 'direct_dependent_settings': {
78 'include_dirs': [ 74 'include_dirs': [
79 'public/', 75 'public/',
80 ], 76 ],
(...skipping 635 matching lines...) Expand 10 before | Expand all | Expand 10 after
716 'common/media/cma_param_traits.cc', 712 'common/media/cma_param_traits.cc',
717 'common/media/cma_param_traits.h', 713 'common/media/cma_param_traits.h',
718 'common/media/shared_memory_chunk.cc', 714 'common/media/shared_memory_chunk.cc',
719 'common/media/shared_memory_chunk.h', 715 'common/media/shared_memory_chunk.h',
720 'renderer/media/audio_pipeline_proxy.cc', 716 'renderer/media/audio_pipeline_proxy.cc',
721 'renderer/media/audio_pipeline_proxy.h', 717 'renderer/media/audio_pipeline_proxy.h',
722 'renderer/media/chromecast_media_renderer_factory.cc', 718 'renderer/media/chromecast_media_renderer_factory.cc',
723 'renderer/media/chromecast_media_renderer_factory.h', 719 'renderer/media/chromecast_media_renderer_factory.h',
724 'renderer/media/cma_message_filter_proxy.cc', 720 'renderer/media/cma_message_filter_proxy.cc',
725 'renderer/media/cma_message_filter_proxy.h', 721 'renderer/media/cma_message_filter_proxy.h',
722 'renderer/media/cma_renderer.cc',
723 'renderer/media/cma_renderer.h',
724 'renderer/media/demuxer_stream_adapter.cc',
725 'renderer/media/demuxer_stream_adapter.h',
726 'renderer/media/hole_frame_factory.cc',
727 'renderer/media/hole_frame_factory.h',
726 'renderer/media/media_channel_proxy.cc', 728 'renderer/media/media_channel_proxy.cc',
727 'renderer/media/media_channel_proxy.h', 729 'renderer/media/media_channel_proxy.h',
728 'renderer/media/media_pipeline_proxy.cc', 730 'renderer/media/media_pipeline_proxy.cc',
729 'renderer/media/media_pipeline_proxy.h', 731 'renderer/media/media_pipeline_proxy.h',
730 'renderer/media/video_pipeline_proxy.cc', 732 'renderer/media/video_pipeline_proxy.cc',
731 'renderer/media/video_pipeline_proxy.h', 733 'renderer/media/video_pipeline_proxy.h',
732 ], 734 ],
733 }, # end of target 'cast_shell_media' 735 }, # end of target 'cast_shell_media'
734 # This target contains all of the primary code of |cast_shell|, except 736 # This target contains all of the primary code of |cast_shell|, except
735 # for |main|. This allows end-to-end tests using |cast_shell|. 737 # for |main|. This allows end-to-end tests using |cast_shell|.
(...skipping 21 matching lines...) Expand all
757 'cast_shell_core', 759 'cast_shell_core',
758 ], 760 ],
759 'sources': [ 761 'sources': [
760 'app/cast_main.cc', 762 'app/cast_main.cc',
761 ], 763 ],
762 }, 764 },
763 ], # end of targets 765 ], # end of targets
764 }], 766 }],
765 ], # end of conditions 767 ], # end of conditions
766 } 768 }
OLDNEW
« no previous file with comments | « chromecast/browser/media/media_pipeline_host.cc ('k') | chromecast/chromecast_tests.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698