Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(166)

Side by Side Diff: media/mojo/interfaces/BUILD.gn

Issue 2951523002: Media Remoting: Add mojo interfaces between browser and extension. (Closed)
Patch Set: Rebased again. Created 3 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 34 matching lines...) Expand 10 before | Expand all | Expand 10 after
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("constants") { 49 mojom("constants") {
50 sources = [ 50 sources = [
51 "constants.mojom", 51 "constants.mojom",
52 ] 52 ]
53 } 53 }
54 54
55 mojom("remoting_common") {
56 sources = [
57 "remoting_common.mojom",
58 ]
59
60 # TODO(crbug.com/699569): Convert to use the new JS bindings.
61 use_new_js_bindings = false
62 }
63
64 mojom("mirror_service_remoting") {
65 sources = [
66 "mirror_service_remoting.mojom",
67 ]
68
69 public_deps = [
70 ":remoting_common",
71 ]
72
73 # TODO(crbug.com/699569): Convert to use the new JS bindings.
74 use_new_js_bindings = false
75 }
76
55 mojom("remoting") { 77 mojom("remoting") {
56 sources = [ 78 sources = [
57 "remoting.mojom", 79 "remoting.mojom",
58 ] 80 ]
81
82 public_deps = [
83 ":remoting_common",
84 ]
59 } 85 }
60 86
61 mojom("test_interfaces") { 87 mojom("test_interfaces") {
62 testonly = true 88 testonly = true
63 sources = [ 89 sources = [
64 "traits_test_service.mojom", 90 "traits_test_service.mojom",
65 ] 91 ]
66 public_deps = [ 92 public_deps = [
67 ":interfaces", 93 ":interfaces",
68 ] 94 ]
69 } 95 }
OLDNEW
« no previous file with comments | « chrome/renderer/resources/renderer_resources.grd ('k') | media/mojo/interfaces/mirror_service_remoting.mojom » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698