| OLD | NEW |
| 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 Loading... |
| 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 Loading... |
| 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 } |
| OLD | NEW |