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

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: add max_time 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') | 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 973 matching lines...) Expand 10 before | Expand all | Expand 10 after
984 }], 984 }],
985 ['OS!="linux" and OS!="win"', { 985 ['OS!="linux" and OS!="win"', {
986 'sources!': [ 986 'sources!': [
987 'base/keyboard_event_counter.cc', 987 'base/keyboard_event_counter.cc',
988 'base/keyboard_event_counter.h', 988 'base/keyboard_event_counter.h',
989 ], 989 ],
990 }], 990 }],
991 ], 991 ],
992 }, 992 },
993 { 993 {
994 # GN version: //media/mojo/interfaces
995 'target_name': 'mojo_media_bindings',
996 'type': 'static_library',
997 'sources': [
998 'mojo/interfaces/media_types.mojom',
999 'mojo/interfaces/media_renderer.mojom',
1000 ],
1001 'includes': [
1002 '../mojo/public/tools/bindings/mojom_bindings_generator.gypi'
1003 ],
1004 'export_dependent_settings': [
1005 '../mojo/mojo_base.gyp:mojo_cpp_bindings',
1006 ],
1007 'dependencies': [
1008 '../mojo/mojo_base.gyp:mojo_cpp_bindings',
1009 ],
1010 },
1011 {
1012 'target_name': 'mojo_media_lib',
1013 'type': 'static_library',
1014 'includes': [
1015 '../mojo/mojo_variables.gypi',
1016 ],
1017 'dependencies': [
1018 'media',
1019 'mojo_media_bindings',
1020 '../base/base.gyp:base',
1021 '../mojo/mojo_base.gyp:mojo_environment_chromium',
1022 '<(mojo_system_for_component)',
1023 ],
1024 'export_dependent_settings': [
1025 'mojo_media_bindings',
1026 ],
1027 'sources': [
1028 'mojo/services/media_type_converters.cc',
1029 'mojo/services/media_type_converters.h',
1030 ],
1031 },
1032 {
1033 'target_name': 'mojo_media_lib_unittests',
1034 'type': '<(gtest_target_type)',
1035 'dependencies': [
1036 'media',
1037 'mojo_media_bindings',
1038 'mojo_media_lib',
1039 '../base/base.gyp:base',
1040 '../base/base.gyp:test_support_base',
1041 '../testing/gtest.gyp:gtest',
1042 '../mojo/mojo_base.gyp:mojo_environment_chromium',
1043 '../mojo/mojo_base.gyp:mojo_run_all_unittests',
1044 ],
1045 'sources': [
1046 'mojo/services/media_type_converters_unittest.cc',
1047 ],
1048 },
1049 {
994 # GN version: //media:media_unittests 1050 # GN version: //media:media_unittests
995 'target_name': 'media_unittests', 1051 'target_name': 'media_unittests',
996 'type': '<(gtest_target_type)', 1052 'type': '<(gtest_target_type)',
997 'dependencies': [ 1053 'dependencies': [
998 'media', 1054 'media',
999 'media_test_support', 1055 'media_test_support',
1000 'shared_memory_support', 1056 'shared_memory_support',
1001 '../base/base.gyp:base', 1057 '../base/base.gyp:base',
1002 '../base/base.gyp:base_i18n', 1058 '../base/base.gyp:base_i18n',
1003 '../base/base.gyp:test_support_base', 1059 '../base/base.gyp:test_support_base',
(...skipping 722 matching lines...) Expand 10 before | Expand all | Expand 10 after
1726 ], 1782 ],
1727 }], 1783 }],
1728 ], 1784 ],
1729 }], 1785 }],
1730 ], 1786 ],
1731 }, 1787 },
1732 ], 1788 ],
1733 }], 1789 }],
1734 ], 1790 ],
1735 } 1791 }
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