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", | |
11 "audio_parameters.mojom", | 10 "audio_parameters.mojom", |
12 "content_decryption_module.mojom", | 11 "content_decryption_module.mojom", |
13 "decryptor.mojom", | 12 "decryptor.mojom", |
14 "demuxer_stream.mojom", | 13 "demuxer_stream.mojom", |
15 "interface_factory.mojom", | 14 "interface_factory.mojom", |
16 "media_service.mojom", | 15 "media_service.mojom", |
17 "media_types.mojom", | 16 "media_types.mojom", |
18 "output_protection.mojom", | 17 "output_protection.mojom", |
19 "provision_fetcher.mojom", | 18 "provision_fetcher.mojom", |
20 "renderer.mojom", | 19 "renderer.mojom", |
21 "video_decoder.mojom", | 20 "video_decoder.mojom", |
22 ] | 21 ] |
23 | 22 |
24 if (is_chromeos) { | 23 if (is_chromeos) { |
25 sources += [ "platform_verification.mojom" ] | 24 sources += [ "platform_verification.mojom" ] |
26 } | 25 } |
27 | 26 |
28 public_deps = [ | 27 public_deps = [ |
29 "//mojo/common:common_custom_types", | 28 "//mojo/common:common_custom_types", |
30 "//services/service_manager/public/interfaces", | 29 "//services/service_manager/public/interfaces", |
31 "//ui/gfx/geometry/mojo", | 30 "//ui/gfx/geometry/mojo", |
32 "//url/mojo:url_mojom_gurl", | 31 "//url/mojo:url_mojom_gurl", |
| 32 "//url/mojo:url_mojom_origin", |
33 ] | 33 ] |
34 } | 34 } |
35 | 35 |
36 mojom("remoting") { | 36 mojom("remoting") { |
37 sources = [ | 37 sources = [ |
38 "remoting.mojom", | 38 "remoting.mojom", |
39 ] | 39 ] |
40 } | 40 } |
OLD | NEW |