| OLD | NEW |
| 1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 2014 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 import("//mojo/public/tools/bindings/mojom.gni") | 5 import("//mojo/public/tools/bindings/mojom.gni") |
| 6 | 6 |
| 7 mojom("interfaces") { | 7 mojom("interfaces") { |
| 8 sources = [ | 8 sources = [ |
| 9 "audio_decoder.mojom", | 9 "audio_decoder.mojom", |
| 10 "audio_output.mojom", | 10 "audio_output.mojom", |
| 11 "audio_parameters.mojom", | 11 "audio_parameters.mojom", |
| 12 "audio_renderer_sink.mojom", | 12 "audio_renderer_sink.mojom", |
| 13 "content_decryption_module.mojom", | 13 "content_decryption_module.mojom", |
| 14 "data_source.mojom", |
| 14 "decryptor.mojom", | 15 "decryptor.mojom", |
| 16 "demuxer.mojom", |
| 15 "demuxer_stream.mojom", | 17 "demuxer_stream.mojom", |
| 16 "interface_factory.mojom", | 18 "interface_factory.mojom", |
| 17 "media_service.mojom", | 19 "media_service.mojom", |
| 18 "media_types.mojom", | 20 "media_types.mojom", |
| 19 "output_device_info.mojom", | 21 "output_device_info.mojom", |
| 20 "output_protection.mojom", | 22 "output_protection.mojom", |
| 21 "provision_fetcher.mojom", | 23 "provision_fetcher.mojom", |
| 22 "renderer.mojom", | 24 "renderer.mojom", |
| 25 "source_buffer.mojom", |
| 23 "video_decoder.mojom", | 26 "video_decoder.mojom", |
| 24 "video_renderer_sink.mojom", | 27 "video_renderer_sink.mojom", |
| 25 ] | 28 ] |
| 26 | 29 |
| 27 if (is_chromeos) { | 30 if (is_chromeos) { |
| 28 sources += [ "platform_verification.mojom" ] | 31 sources += [ "platform_verification.mojom" ] |
| 29 } | 32 } |
| 30 | 33 |
| 31 public_deps = [ | 34 public_deps = [ |
| 32 "//mojo/common:common_custom_types", | 35 "//mojo/common:common_custom_types", |
| 33 "//services/service_manager/public/interfaces", | 36 "//services/service_manager/public/interfaces", |
| 34 "//ui/gfx/geometry/mojo", | 37 "//ui/gfx/geometry/mojo", |
| 35 "//url/mojo:url_mojom_gurl", | 38 "//url/mojo:url_mojom_gurl", |
| 36 ] | 39 ] |
| 37 } | 40 } |
| 38 | 41 |
| 39 mojom("remoting") { | 42 mojom("remoting") { |
| 40 sources = [ | 43 sources = [ |
| 41 "remoting.mojom", | 44 "remoting.mojom", |
| 42 ] | 45 ] |
| 43 } | 46 } |
| OLD | NEW |