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("//mojo/public/mojo_application.gni") | 5 import("//mojo/public/mojo_application.gni") |
6 | 6 |
7 source_set("switches") { | 7 source_set("switches") { |
8 sources = [ | 8 sources = [ |
9 "web_view_switches.cc", | 9 "web_view_switches.cc", |
10 "web_view_switches.h", | 10 "web_view_switches.h", |
(...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
59 "//components/mus/public/interfaces", | 59 "//components/mus/public/interfaces", |
60 "//components/resource_provider/public/interfaces", | 60 "//components/resource_provider/public/interfaces", |
61 "//components/web_view/test_runner/public/interfaces", | 61 "//components/web_view/test_runner/public/interfaces", |
62 "//mojo/application/public/cpp:sources", | 62 "//mojo/application/public/cpp:sources", |
63 "//mojo/application/public/interfaces", | 63 "//mojo/application/public/interfaces", |
64 "//mojo/common:common_base", | 64 "//mojo/common:common_base", |
65 "//mojo/common:url_type_converters", | 65 "//mojo/common:url_type_converters", |
66 "//mojo/converters/geometry", | 66 "//mojo/converters/geometry", |
67 "//mojo/public/cpp/bindings", | 67 "//mojo/public/cpp/bindings", |
68 "//mojo/services/network/public/interfaces", | 68 "//mojo/services/network/public/interfaces", |
| 69 "//mojo/services/tracing/public/cpp", |
69 "//mojo/services/tracing/public/interfaces", | 70 "//mojo/services/tracing/public/interfaces", |
70 "//url", | 71 "//url", |
71 ] | 72 ] |
72 | 73 |
73 public_deps = [ | 74 public_deps = [ |
74 "//components/web_view/public/interfaces", | 75 "//components/web_view/public/interfaces", |
75 ] | 76 ] |
76 | 77 |
77 if (is_linux && !is_android) { | 78 if (is_linux && !is_android) { |
78 deps += [ "//components/font_service/public/interfaces" ] | 79 deps += [ "//components/font_service/public/interfaces" ] |
(...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
128 "//mojo/util:filename_util", | 129 "//mojo/util:filename_util", |
129 "//ui/mojo/geometry:interfaces", | 130 "//ui/mojo/geometry:interfaces", |
130 "//ui/mojo/geometry:util", | 131 "//ui/mojo/geometry:util", |
131 "//url:url", | 132 "//url:url", |
132 ] | 133 ] |
133 | 134 |
134 data_deps = [ | 135 data_deps = [ |
135 ":web_view", | 136 ":web_view", |
136 ] | 137 ] |
137 } | 138 } |
OLD | NEW |