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

Side by Side Diff: media/media.gyp

Issue 684963003: Add support for external video renderers in mojo. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@mojo_config
Patch Set: More MSVC... Created 6 years, 1 month 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 | « no previous file | media/mojo/DEPS » ('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 (c) 2012 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2012 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 'chromium_code': 1, 7 'chromium_code': 1,
8 # Override to dynamically link the cras (ChromeOS audio) library. 8 # Override to dynamically link the cras (ChromeOS audio) library.
9 'use_cras%': 0, 9 'use_cras%': 0,
10 # Option e.g. for Linux distributions to link pulseaudio directly 10 # Option e.g. for Linux distributions to link pulseaudio directly
(...skipping 1020 matching lines...) Expand 10 before | Expand all | Expand 10 after
1031 'sources': [ 1031 'sources': [
1032 'mojo/interfaces/media_types.mojom', 1032 'mojo/interfaces/media_types.mojom',
1033 'mojo/interfaces/media_renderer.mojom', 1033 'mojo/interfaces/media_renderer.mojom',
1034 'mojo/interfaces/demuxer_stream.mojom', 1034 'mojo/interfaces/demuxer_stream.mojom',
1035 ], 1035 ],
1036 'includes': [ 1036 'includes': [
1037 '../mojo/public/tools/bindings/mojom_bindings_generator.gypi' 1037 '../mojo/public/tools/bindings/mojom_bindings_generator.gypi'
1038 ], 1038 ],
1039 'export_dependent_settings': [ 1039 'export_dependent_settings': [
1040 '../mojo/public/mojo_public.gyp:mojo_cpp_bindings', 1040 '../mojo/public/mojo_public.gyp:mojo_cpp_bindings',
1041 '../mojo/services/public/mojo_services_public.gyp:mojo_geometry_bindings ',
1041 ], 1042 ],
1042 'dependencies': [ 1043 'dependencies': [
1043 '../mojo/public/mojo_public.gyp:mojo_cpp_bindings', 1044 '../mojo/public/mojo_public.gyp:mojo_cpp_bindings',
1045 '../mojo/services/public/mojo_services_public.gyp:mojo_geometry_bindings ',
1044 ], 1046 ],
1045 }, 1047 },
1046 { 1048 {
1047 'target_name': 'media_mojo_lib', 1049 'target_name': 'media_mojo_lib',
1048 'type': 'static_library', 1050 'type': 'static_library',
1049 'includes': [ 1051 'includes': [
1050 '../mojo/mojo_variables.gypi', 1052 '../mojo/mojo_variables.gypi',
1051 ], 1053 ],
1052 'dependencies': [ 1054 'dependencies': [
1053 'media', 1055 'media',
1054 'media_mojo_bindings', 1056 'media_mojo_bindings',
1055 '../base/base.gyp:base', 1057 '../base/base.gyp:base',
1058 '../mojo/mojo_geometry_converters.gyp:mojo_geometry_lib',
1056 '../mojo/mojo_base.gyp:mojo_environment_chromium', 1059 '../mojo/mojo_base.gyp:mojo_environment_chromium',
1057 '../mojo/public/mojo_public.gyp:mojo_application_base', 1060 '../mojo/public/mojo_public.gyp:mojo_application_base',
1058 '../mojo/public/mojo_public.gyp:mojo_application_bindings', 1061 '../mojo/public/mojo_public.gyp:mojo_application_bindings',
1062 '../skia/skia.gyp:skia',
1063 '../ui/gfx/gfx.gyp:gfx_geometry',
1059 '<(mojo_system_for_component)', 1064 '<(mojo_system_for_component)',
1060 ], 1065 ],
1061 'export_dependent_settings': [ 1066 'export_dependent_settings': [
1062 'media_mojo_bindings', 1067 'media_mojo_bindings',
1063 ], 1068 ],
1064 'sources': [ 1069 'sources': [
1065 'mojo/services/media_type_converters.cc', 1070 'mojo/services/media_type_converters.cc',
1066 'mojo/services/media_type_converters.h', 1071 'mojo/services/media_type_converters.h',
1067 'mojo/services/mojo_demuxer_stream_impl.cc', 1072 'mojo/services/mojo_demuxer_stream_impl.cc',
1068 'mojo/services/mojo_demuxer_stream_impl.h', 1073 'mojo/services/mojo_demuxer_stream_impl.h',
1069 'mojo/services/mojo_renderer_impl.cc', 1074 'mojo/services/mojo_renderer_impl.cc',
1070 'mojo/services/mojo_renderer_impl.h', 1075 'mojo/services/mojo_renderer_impl.h',
1071 ], 1076 ],
1072 }, 1077 },
1073 { 1078 {
1074 'target_name': 'mojo_media_renderer_app', 1079 'target_name': 'mojo_media_renderer_app',
1075 'type': 'loadable_module', 1080 'type': 'loadable_module',
1076 'includes': [ 1081 'includes': [
1077 '../mojo/mojo_variables.gypi', 1082 '../mojo/mojo_variables.gypi',
1078 ], 1083 ],
1079 'dependencies': [ 1084 'dependencies': [
1080 '../base/base.gyp:base', 1085 '../base/base.gyp:base',
1081 '../mojo/mojo_base.gyp:mojo_application_chromium', 1086 '../mojo/mojo_base.gyp:mojo_application_chromium',
1082 '<(mojo_system_for_loadable_module)', 1087 '<(mojo_system_for_loadable_module)',
1083 'media_mojo_lib', 1088 'media_mojo_lib',
1084 'shared_memory_support', 1089 'shared_memory_support',
1085 ], 1090 ],
1086 'sources': [ 1091 'sources': [
1092 'mojo/services/demuxer_stream_provider_shim.cc',
1093 'mojo/services/demuxer_stream_provider_shim.h',
1087 'mojo/services/mojo_demuxer_stream_adapter.cc', 1094 'mojo/services/mojo_demuxer_stream_adapter.cc',
1088 'mojo/services/mojo_demuxer_stream_adapter.h', 1095 'mojo/services/mojo_demuxer_stream_adapter.h',
1089 'mojo/services/mojo_renderer_service.cc', 1096 'mojo/services/mojo_renderer_service.cc',
1090 'mojo/services/mojo_renderer_service.h', 1097 'mojo/services/mojo_renderer_service.h',
1091 'mojo/services/renderer_config.cc', 1098 'mojo/services/renderer_config.cc',
1092 'mojo/services/renderer_config.h', 1099 'mojo/services/renderer_config.h',
1093 'mojo/services/renderer_config_default.cc', 1100 'mojo/services/renderer_config_default.cc',
1094 ], 1101 ],
1095 }, 1102 },
1096 { 1103 {
(...skipping 872 matching lines...) Expand 10 before | Expand all | Expand 10 after
1969 '../build/isolate.gypi', 1976 '../build/isolate.gypi',
1970 ], 1977 ],
1971 'sources': [ 1978 'sources': [
1972 'media_unittests.isolate', 1979 'media_unittests.isolate',
1973 ], 1980 ],
1974 }, 1981 },
1975 ], 1982 ],
1976 }], 1983 }],
1977 ], 1984 ],
1978 } 1985 }
OLDNEW
« no previous file with comments | « no previous file | media/mojo/DEPS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698