| 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 25 matching lines...) Expand all Loading... |
| 36 "//ui/gfx/geometry/mojo", | 36 "//ui/gfx/geometry/mojo", |
| 37 "//url/mojo:url_mojom_gurl", | 37 "//url/mojo:url_mojom_gurl", |
| 38 ] | 38 ] |
| 39 } | 39 } |
| 40 | 40 |
| 41 mojom("remoting") { | 41 mojom("remoting") { |
| 42 sources = [ | 42 sources = [ |
| 43 "remoting.mojom", | 43 "remoting.mojom", |
| 44 ] | 44 ] |
| 45 } | 45 } |
| 46 |
| 47 mojom("media_controller") { |
| 48 sources = [ |
| 49 "media_controller.mojom", |
| 50 "media_status.mojom", |
| 51 ] |
| 52 |
| 53 public_deps = [ |
| 54 "//mojo/common:common_custom_types", |
| 55 ] |
| 56 } |
| 57 |
| 58 mojom("media_router") { |
| 59 sources = [ |
| 60 "media_router.mojom", |
| 61 ] |
| 62 |
| 63 public_deps = [ |
| 64 ":media_controller", |
| 65 "//mojo/common:common_custom_types", |
| 66 "//net/interfaces:interfaces", |
| 67 "//url/mojo:url_mojom_gurl", |
| 68 "//url/mojo:url_mojom_origin", |
| 69 ] |
| 70 } |
| 71 |
| 72 mojom("media_router_test_interfaces") { |
| 73 sources = [ |
| 74 "media_router_traits_test_service.mojom", |
| 75 ] |
| 76 |
| 77 public_deps = [ |
| 78 ":media_router", |
| 79 ] |
| 80 } |
| OLD | NEW |