OLD | NEW |
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': 'audio_output_mojom', | 8 'target_name': 'audio_output_mojom', |
9 'type': 'none', | 9 'type': 'none', |
10 'variables': { | 10 'variables': { |
11 'mojom_files': [ | 11 'mojom_files': [ |
12 'audio_output.mojom', | 12 'audio_output.mojom', |
13 'audio_parameters.mojom', | 13 'audio_parameters.mojom', |
14 ], | 14 ], |
| 15 'mojom_typemaps': [ |
| 16 'audio_parameters.typemap', |
| 17 ], |
15 }, | 18 }, |
16 'dependencies': [ | 19 'dependencies': [ |
17 '../../../mojo/mojo_public.gyp:mojo_cpp_bindings', | 20 '../../../mojo/mojo_public.gyp:mojo_cpp_bindings', |
18 ], | 21 ], |
19 'includes': [ '../../../mojo/mojom_bindings_generator_explicit.gypi' ], | 22 'includes': [ '../../../mojo/mojom_bindings_generator_explicit.gypi' ], |
20 'mojom_typemaps': [ | |
21 'audio_parameters.typemap', | |
22 ], | |
23 }, | 23 }, |
24 { | 24 { |
25 'target_name': 'audio_output_mojom_bindings', | 25 'target_name': 'audio_output_mojom_bindings', |
26 'type': 'static_library', | 26 'type': 'static_library', |
27 'dependencies': [ | 27 'dependencies': [ |
28 'audio_output_mojom', | 28 'audio_output_mojom', |
29 ], | 29 ], |
30 }, | 30 }, |
31 { | 31 { |
32 # GN version: //media/mojo/interfaces | 32 # GN version: //media/mojo/interfaces |
(...skipping 30 matching lines...) Expand all Loading... |
63 }, | 63 }, |
64 { | 64 { |
65 'target_name': 'provision_fetcher_api', | 65 'target_name': 'provision_fetcher_api', |
66 'type': 'static_library', | 66 'type': 'static_library', |
67 'dependencies': [ | 67 'dependencies': [ |
68 'provision_fetcher_mojo_bindings', | 68 'provision_fetcher_mojo_bindings', |
69 '../../../mojo/mojo_public.gyp:mojo_cpp_bindings', | 69 '../../../mojo/mojo_public.gyp:mojo_cpp_bindings', |
70 '../../../services/shell/shell_public.gyp:shell_public', | 70 '../../../services/shell/shell_public.gyp:shell_public', |
71 ], | 71 ], |
72 }, | 72 }, |
| 73 { |
| 74 # GN version: //content/common:mojo_bindings |
| 75 'target_name': 'mojo_bindings', |
| 76 'type': 'none', |
| 77 'variables': { |
| 78 'mojom_files': [ |
| 79 'content_decryption_module.mojom', |
| 80 'decryptor.mojom', |
| 81 'demuxer_stream.mojom', |
| 82 'media_types.mojom', |
| 83 ], |
| 84 }, |
| 85 'dependencies': [ |
| 86 '../../../mojo/mojo_public.gyp:mojo_cpp_bindings', |
| 87 ], |
| 88 'includes': [ '../../../mojo/mojom_bindings_generator_explicit.gypi' ], |
| 89 }, |
| 90 { |
| 91 'target_name': 'mojo_type_convertor', |
| 92 'type': 'static_library', |
| 93 'dependencies': [ |
| 94 'mojo_bindings', |
| 95 ], |
| 96 'sources': [ |
| 97 '../common/media_type_converters.cc', |
| 98 '../common/media_type_converters.h', |
| 99 '../common/mojo_shared_buffer_video_frame.cc', |
| 100 '../common/mojo_shared_buffer_video_frame.h', |
| 101 ] |
| 102 }, |
73 ], | 103 ], |
74 } | 104 } |
OLD | NEW |