| 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_stream.mojom", | 10 "audio_output_stream.mojom", |
| (...skipping 28 matching lines...) Expand all Loading... |
| 39 "//services/service_manager/public/interfaces", | 39 "//services/service_manager/public/interfaces", |
| 40 "//ui/gfx/geometry/mojo", | 40 "//ui/gfx/geometry/mojo", |
| 41 "//url/mojo:url_mojom_gurl", | 41 "//url/mojo:url_mojom_gurl", |
| 42 "//url/mojo:url_mojom_origin", | 42 "//url/mojo:url_mojom_origin", |
| 43 ] | 43 ] |
| 44 | 44 |
| 45 # TODO(crbug.com/714018): Convert the implementation to use OnceCallback. | 45 # TODO(crbug.com/714018): Convert the implementation to use OnceCallback. |
| 46 use_once_callback = false | 46 use_once_callback = false |
| 47 } | 47 } |
| 48 | 48 |
| 49 mojom("remoting_common") { |
| 50 sources = [ |
| 51 "remoting_common.mojom", |
| 52 ] |
| 53 |
| 54 # TODO(crbug.com/699569): Convert to use the new JS bindings. |
| 55 use_new_js_bindings = false |
| 56 } |
| 57 |
| 58 mojom("mirror_service_remoting") { |
| 59 sources = [ |
| 60 "mirror_service_remoting.mojom", |
| 61 ] |
| 62 |
| 63 public_deps = [ |
| 64 ":remoting_common", |
| 65 ] |
| 66 |
| 67 # TODO(crbug.com/699569): Convert to use the new JS bindings. |
| 68 use_new_js_bindings = false |
| 69 } |
| 70 |
| 49 mojom("remoting") { | 71 mojom("remoting") { |
| 50 sources = [ | 72 sources = [ |
| 51 "remoting.mojom", | 73 "remoting.mojom", |
| 52 ] | 74 ] |
| 75 |
| 76 public_deps = [ |
| 77 ":remoting_common", |
| 78 ] |
| 53 } | 79 } |
| 54 | 80 |
| 55 mojom("test_interfaces") { | 81 mojom("test_interfaces") { |
| 56 testonly = true | 82 testonly = true |
| 57 sources = [ | 83 sources = [ |
| 58 "traits_test_service.mojom", | 84 "traits_test_service.mojom", |
| 59 ] | 85 ] |
| 60 public_deps = [ | 86 public_deps = [ |
| 61 ":interfaces", | 87 ":interfaces", |
| 62 ] | 88 ] |
| 63 } | 89 } |
| OLD | NEW |