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

Side by Side Diff: media/mojo/interfaces/mojo_bindings.gyp

Issue 1896883002: Mojo interfaces needed for switching audio rendering stream creation and closing from IPC to Mojo (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase Created 4 years, 7 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 2015 The Chromium Authors. All rights reserved. 1 # Copyright 2015 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 'targets': [ 5 'targets': [
6 { 6 {
7 # GN version: //media/mojo/interfaces 7 # GN version: //media/mojo/interfaces
8 'target_name': 'platform_verification_mojo_bindings', 8 'target_name': 'platform_verification_mojo_bindings',
9 'type': 'none', 9 'type': 'none',
10 'sources': [ 10 'sources': [
(...skipping 27 matching lines...) Expand all
38 }, 38 },
39 { 39 {
40 'target_name': 'provision_fetcher_api', 40 'target_name': 'provision_fetcher_api',
41 'type': 'static_library', 41 'type': 'static_library',
42 'dependencies': [ 42 'dependencies': [
43 'provision_fetcher_mojo_bindings', 43 'provision_fetcher_mojo_bindings',
44 '../../../mojo/mojo_public.gyp:mojo_cpp_bindings', 44 '../../../mojo/mojo_public.gyp:mojo_cpp_bindings',
45 '../../../services/shell/shell.gyp:shell_public', 45 '../../../services/shell/shell.gyp:shell_public',
46 ], 46 ],
47 }, 47 },
48 {
49 # GN version: //content/common:mojo_bindings
50 'includes': [ '../../../mojo/mojom_bindings_generator.gypi' ],
51 'target_name': 'audio_output_mojom',
52 'type': 'none',
53 'variables': {
54 'mojom_files': [
55 'audio_output.mojom',
56 'content_decryption_module.mojom',
57 'decryptor.mojom',
58 'demuxer_stream.mojom',
59 'media_types.mojom',
60 ],
61 },
62 'dependencies': [
63 '../../../mojo/mojo_public.gyp:mojo_cpp_bindings',
64 ],
65 'includes': [ '../../../mojo/mojom_bindings_generator_explicit.gypi' ],
66 },
67 {
68 'target_name': 'audio_output_mojom_bindings',
xhwang 2016/05/03 00:14:34 The naming of the target doesn't really match what
rchtara 2016/05/03 07:44:03 yes, but I will need it for the other cl. https:/
rchtara 2016/05/04 08:38:43 Done.
69 'type': 'static_library',
70 'dependencies': [
71 'audio_output_mojom',
72 ],
73 'sources': [
74 '../common/media_type_converters.cc',
75 '../common/media_type_converters.h',
76 '../common/mojo_shared_buffer_video_frame.cc',
77 '../common/mojo_shared_buffer_video_frame.h',
78 ]
79 },
48 ], 80 ],
49 } 81 }
OLDNEW
« media/mojo/common/media_type_converters.cc ('K') | « media/mojo/interfaces/media_types.mojom ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698