| OLD | NEW |
| 1 # Copyright 2017 The Chromium Authors. All rights reserved. | 1 # Copyright 2017 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("dial_utility_interfaces") { | 7 mojom("dial_utility_interfaces") { |
| 8 sources = [ | 8 sources = [ |
| 9 "dial_device_description_parser.mojom", | 9 "dial_device_description_parser.mojom", |
| 10 ] | 10 ] |
| (...skipping 17 matching lines...) Expand all Loading... |
| 28 use_new_js_bindings = false | 28 use_new_js_bindings = false |
| 29 } | 29 } |
| 30 | 30 |
| 31 mojom("media_router") { | 31 mojom("media_router") { |
| 32 sources = [ | 32 sources = [ |
| 33 "media_router.mojom", | 33 "media_router.mojom", |
| 34 ] | 34 ] |
| 35 | 35 |
| 36 public_deps = [ | 36 public_deps = [ |
| 37 ":media_controller", | 37 ":media_controller", |
| 38 "//media/mojo/interfaces:mirror_service_remoting", |
| 38 "//mojo/common:common_custom_types", | 39 "//mojo/common:common_custom_types", |
| 39 "//net/interfaces:interfaces", | 40 "//net/interfaces:interfaces", |
| 40 "//url/mojo:url_mojom_gurl", | 41 "//url/mojo:url_mojom_gurl", |
| 41 "//url/mojo:url_mojom_origin", | 42 "//url/mojo:url_mojom_origin", |
| 42 ] | 43 ] |
| 43 | 44 |
| 44 # TODO(crbug.com/699569): Convert to use the new JS bindings. | 45 # TODO(crbug.com/699569): Convert to use the new JS bindings. |
| 45 use_new_js_bindings = false | 46 use_new_js_bindings = false |
| 46 } | 47 } |
| 47 | 48 |
| 48 mojom("media_router_test_interfaces") { | 49 mojom("media_router_test_interfaces") { |
| 49 sources = [ | 50 sources = [ |
| 50 "media_router_traits_test_service.mojom", | 51 "media_router_traits_test_service.mojom", |
| 51 ] | 52 ] |
| 52 | 53 |
| 53 public_deps = [ | 54 public_deps = [ |
| 54 ":media_router", | 55 ":media_router", |
| 55 ] | 56 ] |
| 56 } | 57 } |
| OLD | NEW |