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 "frame.cc", | 16 "frame.cc", |
17 "frame.h", | 17 "frame.h", |
18 "frame_connection.cc", | 18 "frame_connection.cc", |
19 "frame_connection.h", | 19 "frame_connection.h", |
20 "frame_devtools_agent.cc", | 20 "frame_devtools_agent.cc", |
21 "frame_devtools_agent.h", | 21 "frame_devtools_agent.h", |
22 "frame_devtools_agent_delegate.h", | 22 "frame_devtools_agent_delegate.h", |
23 "frame_tree.cc", | 23 "frame_tree.cc", |
24 "frame_tree.h", | 24 "frame_tree.h", |
25 "frame_tree_delegate.cc", | 25 "frame_tree_delegate.cc", |
26 "frame_tree_delegate.h", | 26 "frame_tree_delegate.h", |
27 "frame_user_data.h", | 27 "frame_user_data.h", |
28 "pending_web_view_load.cc", | 28 "pending_web_view_load.cc", |
29 "pending_web_view_load.h", | 29 "pending_web_view_load.h", |
| 30 "url_request_cloneable.cc", |
| 31 "url_request_cloneable.h", |
30 "web_view_application_delegate.cc", | 32 "web_view_application_delegate.cc", |
31 "web_view_application_delegate.h", | 33 "web_view_application_delegate.h", |
32 "web_view_impl.cc", | 34 "web_view_impl.cc", |
33 "web_view_impl.h", | 35 "web_view_impl.h", |
34 ] | 36 ] |
35 | 37 |
36 deps = [ | 38 deps = [ |
37 ":switches", | 39 ":switches", |
38 "//base", | 40 "//base", |
39 "//components/clipboard/public/interfaces", | 41 "//components/clipboard/public/interfaces", |
(...skipping 69 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
109 "//mojo/application/public/cpp:sources", | 111 "//mojo/application/public/cpp:sources", |
110 "//mojo/application/public/cpp:test_support", | 112 "//mojo/application/public/cpp:test_support", |
111 "//mojo/util:filename_util", | 113 "//mojo/util:filename_util", |
112 "//ui/mojo/geometry:interfaces", | 114 "//ui/mojo/geometry:interfaces", |
113 "//ui/mojo/geometry:util", | 115 "//ui/mojo/geometry:util", |
114 "//url:url", | 116 "//url:url", |
115 ] | 117 ] |
116 | 118 |
117 data_deps = [ "//components/view_manager" ] | 119 data_deps = [ "//components/view_manager" ] |
118 } | 120 } |
OLD | NEW |