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': '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 Loading... |
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 'target_name': 'mojo_bindings', |
| 51 'type': 'none', |
| 52 'variables': { |
| 53 'mojom_files': [ |
| 54 'content_decryption_module.mojom', |
| 55 'decryptor.mojom', |
| 56 'demuxer_stream.mojom', |
| 57 'media_types.mojom', |
| 58 ], |
| 59 }, |
| 60 'dependencies': [ |
| 61 '../../../mojo/mojo_public.gyp:mojo_cpp_bindings', |
| 62 ], |
| 63 'includes': [ '../../../mojo/mojom_bindings_generator_explicit.gypi' ], |
| 64 }, |
| 65 { |
| 66 'target_name': 'mojo_type_convertor', |
| 67 'type': 'static_library', |
| 68 'dependencies': [ |
| 69 'mojo_bindings', |
| 70 ], |
| 71 'sources': [ |
| 72 '../common/media_type_converters.cc', |
| 73 '../common/media_type_converters.h', |
| 74 '../common/mojo_shared_buffer_video_frame.cc', |
| 75 '../common/mojo_shared_buffer_video_frame.h', |
| 76 ] |
| 77 }, |
48 ], | 78 ], |
49 } | 79 } |
OLD | NEW |