| 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 = [ |
| 11 "//base", | 11 "//base", |
| 12 "//chrome/common:constants", | 12 "//chrome/common:constants", |
| 13 "//components/keyed_service/content", | 13 "//components/keyed_service/content", |
| 14 "//components/keyed_service/core", | 14 "//components/keyed_service/core", |
| 15 "//content/public/browser", | 15 "//content/public/browser", |
| 16 "//content/public/common", |
| 16 "//third_party/icu", | 17 "//third_party/icu", |
| 17 "//url", | 18 "//url", |
| 18 ] | 19 ] |
| 19 sources = [ | 20 sources = [ |
| 20 "create_presentation_connection_request.cc", | 21 "create_presentation_connection_request.cc", |
| 21 "create_presentation_connection_request.h", | 22 "create_presentation_connection_request.h", |
| 22 "issue.cc", | 23 "issue.cc", |
| 23 "issue.h", | 24 "issue.h", |
| 24 "issue_manager.cc", | 25 "issue_manager.cc", |
| 25 "issue_manager.h", | 26 "issue_manager.h", |
| (...skipping 94 matching lines...) Expand 10 before | Expand all | Expand 10 after 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 |