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

Side by Side Diff: media/media.gyp

Issue 491733004: media: add basic MediaRenderer mojom and TypeConverters (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: review Created 6 years, 3 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 | Annotate | Revision Log
« no previous file with comments | « no previous file | media/mojo/DEPS » ('j') | media/mojo/interfaces/media_renderer.mojom » ('J')
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 975 matching lines...) Expand 10 before | Expand all | Expand 10 after
986 }], 986 }],
987 ['OS!="linux" and OS!="win"', { 987 ['OS!="linux" and OS!="win"', {
988 'sources!': [ 988 'sources!': [
989 'base/keyboard_event_counter.cc', 989 'base/keyboard_event_counter.cc',
990 'base/keyboard_event_counter.h', 990 'base/keyboard_event_counter.h',
991 ], 991 ],
992 }], 992 }],
993 ], 993 ],
994 }, 994 },
995 { 995 {
996 # GN version: //media/mojo/interfaces
997 'target_name': 'mojo_media_bindings',
998 'type': 'static_library',
999 'sources': [
1000 'mojo/interfaces/media_types.mojom',
1001 'mojo/interfaces/media_renderer.mojom',
1002 ],
1003 'includes': [
1004 '../mojo/public/tools/bindings/mojom_bindings_generator.gypi'
1005 ],
1006 'export_dependent_settings': [
1007 '../mojo/mojo_base.gyp:mojo_cpp_bindings',
1008 ],
1009 'dependencies': [
1010 '../mojo/mojo_base.gyp:mojo_cpp_bindings',
1011 ],
1012 },
1013 {
1014 'target_name': 'mojo_media_lib',
1015 'type': 'static_library',
1016 'includes': [
1017 '../mojo/mojo_variables.gypi',
1018 ],
1019 'dependencies': [
1020 'media',
1021 'mojo_media_bindings',
1022 '../base/base.gyp:base',
1023 '../mojo/mojo_base.gyp:mojo_environment_chromium',
1024 '<(mojo_system_for_component)',
1025 ],
1026 'export_dependent_settings': [
1027 'mojo_media_bindings',
1028 ],
1029 'sources': [
1030 'mojo/services/media_type_converters.cc',
1031 'mojo/services/media_type_converters.h',
1032 ],
1033 },
1034 {
1035 'target_name': 'mojo_media_lib_unittests',
1036 'type': 'executable',
1037 'dependencies': [
1038 'media',
1039 'mojo_media_bindings',
1040 'mojo_media_lib',
1041 '../base/base.gyp:base',
1042 '../base/base.gyp:test_support_base',
1043 '../testing/gtest.gyp:gtest',
1044 '../mojo/mojo_base.gyp:mojo_environment_chromium',
1045 '../mojo/mojo_base.gyp:mojo_run_all_unittests',
1046 ],
1047 'sources': [
1048 'mojo/services/media_type_converters_unittest.cc',
1049 ],
1050 },
1051 {
996 # GN version: //media:media_unittests 1052 # GN version: //media:media_unittests
997 'target_name': 'media_unittests', 1053 'target_name': 'media_unittests',
998 'type': '<(gtest_target_type)', 1054 'type': '<(gtest_target_type)',
999 'dependencies': [ 1055 'dependencies': [
1000 'media', 1056 'media',
1001 'media_test_support', 1057 'media_test_support',
1002 'shared_memory_support', 1058 'shared_memory_support',
1003 '../base/base.gyp:base', 1059 '../base/base.gyp:base',
1004 '../base/base.gyp:base_i18n', 1060 '../base/base.gyp:base_i18n',
1005 '../base/base.gyp:test_support_base', 1061 '../base/base.gyp:test_support_base',
(...skipping 722 matching lines...) Expand 10 before | Expand all | Expand 10 after
1728 ], 1784 ],
1729 }], 1785 }],
1730 ], 1786 ],
1731 }], 1787 }],
1732 ], 1788 ],
1733 }, 1789 },
1734 ], 1790 ],
1735 }], 1791 }],
1736 ], 1792 ],
1737 } 1793 }
OLDNEW
« no previous file with comments | « no previous file | media/mojo/DEPS » ('j') | media/mojo/interfaces/media_renderer.mojom » ('J')

Powered by Google App Engine
This is Rietveld 408576698