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

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

Issue 2627463003: Convert MediaRouter mojom apis to intake url::Origin objects instead of strings (Closed)
Patch Set: Add missing dependency for extensions_renderer_resources target 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 84 matching lines...) Expand 10 before | Expand all | Expand 10 after
95 } 95 }
96 } 96 }
97 97
98 mojom("mojo_bindings") { 98 mojom("mojo_bindings") {
99 sources = [ 99 sources = [
100 "mojo/media_router.mojom", 100 "mojo/media_router.mojom",
101 ] 101 ]
102 102
103 public_deps = [ 103 public_deps = [
104 "//mojo/common:common_custom_types", 104 "//mojo/common:common_custom_types",
105 "//url/mojo:url_mojom_origin",
105 ] 106 ]
106 } 107 }
107 108
108 static_library("test_support") { 109 static_library("test_support") {
109 testonly = true 110 testonly = true
110 deps = [ 111 deps = [
111 ":router", 112 ":router",
112 "//chrome/test:test_support", 113 "//chrome/test:test_support",
113 "//testing/gmock", 114 "//testing/gmock",
114 ] 115 ]
(...skipping 10 matching lines...) Expand all
125 deps += [ 126 deps += [
126 ":mojo_bindings", 127 ":mojo_bindings",
127 "//extensions/common", 128 "//extensions/common",
128 ] 129 ]
129 sources += [ 130 sources += [
130 "mojo/media_router_mojo_test.cc", 131 "mojo/media_router_mojo_test.cc",
131 "mojo/media_router_mojo_test.h", 132 "mojo/media_router_mojo_test.h",
132 ] 133 ]
133 } 134 }
134 } 135 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698