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

Side by Side Diff: chromecast/chromecast.gyp

Issue 1257013003: Load CMA backend from shared library (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase Created 5 years, 4 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 25 matching lines...) Expand all
36 'target_name': 'cast_public_api', 36 'target_name': 'cast_public_api',
37 'type': '<(component)', 37 'type': '<(component)',
38 'sources': [ 38 'sources': [
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',
47 'public/media/audio_pipeline_device.h',
48 'public/media/cast_decoder_buffer.h',
49 'public/media/cast_decrypt_config.h',
50 'public/media/cast_key_system.h',
46 'public/media/decoder_config.h', 51 'public/media/decoder_config.h',
52 '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',
56 'public/media/media_pipeline_device_params.h',
47 'public/media/stream_id.h', 57 'public/media/stream_id.h',
58 'public/media/video_pipeline_device.h',
48 'public/osd_plane.h', 59 'public/osd_plane.h',
49 'public/osd_plane_shlib.h', 60 'public/osd_plane_shlib.h',
50 'public/osd_surface.h', 61 'public/osd_surface.h',
62 'public/task_runner.h',
51 'public/video_plane.h', 63 'public/video_plane.h',
52 ], 64 ],
65 'direct_dependent_settings': {
66 'include_dirs': [
67 'public/',
68 ],
69 },
53 }, 70 },
54 { 71 {
55 'target_name': 'cast_base', 72 'target_name': 'cast_base',
56 'type': '<(component)', 73 'type': '<(component)',
57 'dependencies': [ 74 'dependencies': [
58 '../base/base.gyp:base', 75 '../base/base.gyp:base',
59 ], 76 ],
60 'sources': [ 77 'sources': [
61 'base/cast_paths.cc', 78 'base/cast_paths.cc',
62 'base/cast_paths.h', 79 'base/cast_paths.h',
63 'base/chromecast_config_android.cc', 80 'base/chromecast_config_android.cc',
64 'base/chromecast_config_android.h', 81 'base/chromecast_config_android.h',
65 'base/chromecast_switches.cc', 82 'base/chromecast_switches.cc',
66 'base/chromecast_switches.h', 83 'base/chromecast_switches.h',
67 'base/error_codes.cc', 84 'base/error_codes.cc',
68 'base/error_codes.h', 85 'base/error_codes.h',
69 'base/metrics/cast_histograms.h', 86 'base/metrics/cast_histograms.h',
70 'base/metrics/cast_metrics_helper.cc', 87 'base/metrics/cast_metrics_helper.cc',
71 'base/metrics/cast_metrics_helper.h', 88 'base/metrics/cast_metrics_helper.h',
72 'base/metrics/grouped_histogram.cc', 89 'base/metrics/grouped_histogram.cc',
73 'base/metrics/grouped_histogram.h', 90 'base/metrics/grouped_histogram.h',
74 'base/path_utils.cc', 91 'base/path_utils.cc',
75 'base/path_utils.h', 92 'base/path_utils.h',
76 'base/process_utils.cc', 93 'base/process_utils.cc',
77 'base/process_utils.h', 94 'base/process_utils.h',
78 'base/serializers.cc', 95 'base/serializers.cc',
79 'base/serializers.h' 96 'base/serializers.h',
97 'base/task_runner_impl.cc',
98 'base/task_runner_impl.h',
80 ], 99 ],
81 'conditions': [ 100 'conditions': [
82 ['OS=="android"', { 101 ['OS=="android"', {
83 'dependencies': [ 102 'dependencies': [
84 'cast_jni_headers', 103 'cast_jni_headers',
85 ], 104 ],
86 }], 105 }],
87 ], 106 ],
88 }, # end of target 'cast_base' 107 }, # end of target 'cast_base'
89 { 108 {
(...skipping 527 matching lines...) Expand 10 before | Expand all | Expand 10 after
617 }, 636 },
618 'includes': [ '../build/jni_generator.gypi' ], 637 'includes': [ '../build/jni_generator.gypi' ],
619 }, 638 },
620 ], # end of targets 639 ], # end of targets
621 }, { # OS != "android" 640 }, { # OS != "android"
622 'targets': [ 641 'targets': [
623 { 642 {
624 'target_name': 'cast_shell_media', 643 'target_name': 'cast_shell_media',
625 'type': '<(component)', 644 'type': '<(component)',
626 'dependencies': [ 645 'dependencies': [
646 'cast_public_api',
627 'media/media.gyp:cast_media', 647 'media/media.gyp:cast_media',
628 '../content/content.gyp:content', 648 '../content/content.gyp:content',
629 '../ipc/ipc.gyp:ipc', 649 '../ipc/ipc.gyp:ipc',
630 '../media/media.gyp:media', 650 '../media/media.gyp:media',
631 ], 651 ],
632 'sources': [ 652 'sources': [
633 'browser/media/cast_browser_cdm_factory.cc', 653 'browser/media/cast_browser_cdm_factory.cc',
634 'browser/media/cast_browser_cdm_factory.h', 654 'browser/media/cast_browser_cdm_factory.h',
635 'browser/media/cma_message_filter_host.cc', 655 'browser/media/cma_message_filter_host.cc',
636 'browser/media/cma_message_filter_host.h', 656 'browser/media/cma_message_filter_host.h',
(...skipping 73 matching lines...) Expand 10 before | Expand all | Expand 10 after
710 'sources': [ 730 'sources': [
711 'graphics/cast_egl_platform_default.cc', 731 'graphics/cast_egl_platform_default.cc',
712 'graphics/graphics_properties_default.cc', 732 'graphics/graphics_properties_default.cc',
713 'graphics/osd_plane_default.cc' 733 'graphics/osd_plane_default.cc'
714 ], 734 ],
715 } 735 }
716 ] 736 ]
717 }], 737 }],
718 ], # end of conditions 738 ], # end of conditions
719 } 739 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698