| 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 79 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 90 } | 90 } |
| 91 } | 91 } |
| 92 | 92 |
| 93 mojom("mojo_bindings") { | 93 mojom("mojo_bindings") { |
| 94 sources = [ | 94 sources = [ |
| 95 "mojo/media_router.mojom", | 95 "mojo/media_router.mojom", |
| 96 ] | 96 ] |
| 97 | 97 |
| 98 public_deps = [ | 98 public_deps = [ |
| 99 "//mojo/common:common_custom_types", | 99 "//mojo/common:common_custom_types", |
| 100 "//url/mojo:url_mojom_origin", |
| 100 ] | 101 ] |
| 101 } | 102 } |
| 102 | 103 |
| 103 static_library("test_support") { | 104 static_library("test_support") { |
| 104 testonly = true | 105 testonly = true |
| 105 deps = [ | 106 deps = [ |
| 106 ":router", | 107 ":router", |
| 107 "//chrome/test:test_support", | 108 "//chrome/test:test_support", |
| 108 "//testing/gmock", | 109 "//testing/gmock", |
| 109 ] | 110 ] |
| (...skipping 10 matching lines...) Expand all Loading... |
| 120 deps += [ | 121 deps += [ |
| 121 ":mojo_bindings", | 122 ":mojo_bindings", |
| 122 "//extensions/common", | 123 "//extensions/common", |
| 123 ] | 124 ] |
| 124 sources += [ | 125 sources += [ |
| 125 "mojo/media_router_mojo_test.cc", | 126 "mojo/media_router_mojo_test.cc", |
| 126 "mojo/media_router_mojo_test.h", | 127 "mojo/media_router_mojo_test.h", |
| 127 ] | 128 ] |
| 128 } | 129 } |
| 129 } | 130 } |
| OLD | NEW |