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

Side by Side Diff: chrome/browser/media/router/BUILD.gn

Issue 2666873006: [Media Router] Convert to use typemaps for media_router.mojom. (Closed)
Patch Set: fix android compile Created 3 years, 10 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 2015 The Chromium Authors. All rights reserved. 1 # Copyright 2015 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 5
6 import("//mojo/public/tools/bindings/mojom.gni") 6 import("//mojo/public/tools/bindings/mojom.gni")
7 import("//testing/test.gni") 7 import("//testing/test.gni")
8 8
9 static_library("router") { 9 static_library("router") {
10 deps = [ 10 deps = [
(...skipping 71 matching lines...) Expand 10 before | Expand all | Expand 10 after
82 "media_router_ui_service.cc", 82 "media_router_ui_service.cc",
83 "media_router_ui_service.h", 83 "media_router_ui_service.h",
84 "media_router_ui_service_factory.cc", 84 "media_router_ui_service_factory.cc",
85 "media_router_ui_service_factory.h", 85 "media_router_ui_service_factory.h",
86 "mojo/media_route_provider_util_win.cc", 86 "mojo/media_route_provider_util_win.cc",
87 "mojo/media_route_provider_util_win.h", 87 "mojo/media_route_provider_util_win.h",
88 "mojo/media_router_mojo_impl.cc", 88 "mojo/media_router_mojo_impl.cc",
89 "mojo/media_router_mojo_impl.h", 89 "mojo/media_router_mojo_impl.h",
90 "mojo/media_router_mojo_metrics.cc", 90 "mojo/media_router_mojo_metrics.cc",
91 "mojo/media_router_mojo_metrics.h", 91 "mojo/media_router_mojo_metrics.h",
92 "mojo/media_router_type_converters.cc",
93 "mojo/media_router_type_converters.h",
94 ] 92 ]
95 } 93 }
96 } 94 }
97 95
98 mojom("mojo_bindings") { 96 mojom("mojo_bindings") {
99 sources = [ 97 sources = [
100 "mojo/media_router.mojom", 98 "mojo/media_router.mojom",
101 ] 99 ]
102 100
103 public_deps = [ 101 public_deps = [
(...skipping 21 matching lines...) Expand all
125 deps += [ 123 deps += [
126 ":mojo_bindings", 124 ":mojo_bindings",
127 "//extensions/common", 125 "//extensions/common",
128 ] 126 ]
129 sources += [ 127 sources += [
130 "mojo/media_router_mojo_test.cc", 128 "mojo/media_router_mojo_test.cc",
131 "mojo/media_router_mojo_test.h", 129 "mojo/media_router_mojo_test.h",
132 ] 130 ]
133 } 131 }
134 } 132 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698