| 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", | |
| 32 "web_view_application_delegate.cc", | 30 "web_view_application_delegate.cc", |
| 33 "web_view_application_delegate.h", | 31 "web_view_application_delegate.h", |
| 34 "web_view_impl.cc", | 32 "web_view_impl.cc", |
| 35 "web_view_impl.h", | 33 "web_view_impl.h", |
| 36 ] | 34 ] |
| 37 | 35 |
| 38 deps = [ | 36 deps = [ |
| 39 ":switches", | 37 ":switches", |
| 40 "//base", | 38 "//base", |
| 41 "//components/clipboard/public/interfaces", | 39 "//components/clipboard/public/interfaces", |
| (...skipping 69 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 111 "//mojo/application/public/cpp:sources", | 109 "//mojo/application/public/cpp:sources", |
| 112 "//mojo/application/public/cpp:test_support", | 110 "//mojo/application/public/cpp:test_support", |
| 113 "//mojo/util:filename_util", | 111 "//mojo/util:filename_util", |
| 114 "//ui/mojo/geometry:interfaces", | 112 "//ui/mojo/geometry:interfaces", |
| 115 "//ui/mojo/geometry:util", | 113 "//ui/mojo/geometry:util", |
| 116 "//url:url", | 114 "//url:url", |
| 117 ] | 115 ] |
| 118 | 116 |
| 119 data_deps = [ "//components/view_manager" ] | 117 data_deps = [ "//components/view_manager" ] |
| 120 } | 118 } |
| OLD | NEW |