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 import("//testing/test.gni") | 5 import("//testing/test.gni") |
6 import("//third_party/mojo/src/mojo/public/tools/bindings/mojom.gni") | 6 import("//third_party/mojo/src/mojo/public/tools/bindings/mojom.gni") |
7 | 7 |
8 gypi_values = exec_script("//build/gypi_to_gn.py", | 8 gypi_values = exec_script("//build/gypi_to_gn.py", |
9 [ rebase_path("media_router.gypi") ], | 9 [ rebase_path("media_router.gypi") ], |
10 "scope", | 10 "scope", |
11 [ "media_router.gypi" ]) | 11 [ "media_router.gypi" ]) |
12 | 12 |
13 # TODO(mfoltz): Fix problem that requires explicitly listing //skia | 13 # TODO(mfoltz): Fix problem that requires explicitly listing //skia |
14 source_set("router") { | 14 static_library("router") { |
15 deps = [ | 15 deps = [ |
16 ":mojo_bindings", | 16 ":mojo_bindings", |
17 "//base", | 17 "//base", |
| 18 "//chrome/common:constants", |
| 19 "//components/keyed_service/content", |
| 20 "//components/keyed_service/core", |
18 "//extensions/browser", | 21 "//extensions/browser", |
19 "//components/keyed_service/core", | 22 "//skia", |
20 "//third_party/mojo/src/mojo/public/cpp/bindings", | 23 "//third_party/mojo/src/mojo/public/cpp/bindings", |
21 "//skia", | |
22 "//url", | 24 "//url", |
23 ] | 25 ] |
24 sources = rebase_path(gypi_values.media_router_sources, | 26 sources = rebase_path(gypi_values.media_router_sources, |
25 ".", | 27 ".", |
26 "//chrome/browser/media/router") | 28 "//chrome/browser/media/router") |
27 } | 29 } |
28 | 30 |
29 mojom("mojo_bindings") { | 31 mojom("mojo_bindings") { |
30 sources = [ | 32 sources = [ |
31 "media_router.mojom", | 33 "media_router.mojom", |
32 ] | 34 ] |
33 } | 35 } |
34 | 36 |
35 source_set("test_support") { | 37 source_set("test_support") { |
36 testonly = true | 38 testonly = true |
37 deps = [ | 39 deps = [ |
38 ":mojo_bindings", | 40 ":mojo_bindings", |
39 ":router", | 41 ":router", |
40 "//chrome/test:test_support", | 42 "//chrome/test:test_support", |
41 "//testing/gmock", | 43 "//testing/gmock", |
42 ] | 44 ] |
43 sources = rebase_path(gypi_values.media_router_test_support_sources, | 45 sources = rebase_path(gypi_values.media_router_test_support_sources, |
44 ".", | 46 ".", |
45 "//chrome/browser/media/router") | 47 "//chrome/browser/media/router") |
46 } | 48 } |
OLD | NEW |