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", |
11 ] | 11 ] |
12 } | 12 } |
13 | 13 |
14 source_set("lib") { | 14 source_set("lib") { |
15 sources = [ | 15 sources = [ |
16 "client_initiated_frame_connection.cc", | 16 "client_initiated_frame_connection.cc", |
17 "client_initiated_frame_connection.h", | 17 "client_initiated_frame_connection.h", |
| 18 "find_controller.cc", |
| 19 "find_controller.h", |
18 "frame.cc", | 20 "frame.cc", |
19 "frame.h", | 21 "frame.h", |
20 "frame_connection.cc", | 22 "frame_connection.cc", |
21 "frame_connection.h", | 23 "frame_connection.h", |
22 "frame_devtools_agent.cc", | 24 "frame_devtools_agent.cc", |
23 "frame_devtools_agent.h", | 25 "frame_devtools_agent.h", |
24 "frame_devtools_agent_delegate.h", | 26 "frame_devtools_agent_delegate.h", |
25 "frame_tree.cc", | 27 "frame_tree.cc", |
26 "frame_tree.h", | 28 "frame_tree.h", |
27 "frame_tree_delegate.cc", | 29 "frame_tree_delegate.cc", |
(...skipping 95 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
123 "//ui/mojo/geometry:interfaces", | 125 "//ui/mojo/geometry:interfaces", |
124 "//ui/mojo/geometry:util", | 126 "//ui/mojo/geometry:util", |
125 "//url:url", | 127 "//url:url", |
126 ] | 128 ] |
127 | 129 |
128 data_deps = [ | 130 data_deps = [ |
129 ":web_view", | 131 ":web_view", |
130 "//components/mus/vm:lib", | 132 "//components/mus/vm:lib", |
131 ] | 133 ] |
132 } | 134 } |
OLD | NEW |