| 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.h", | 25 "frame_tree_delegate.h", |
| 26 "frame_user_data.h", | 26 "frame_user_data.h", |
| 27 "pending_web_view_load.cc", | 27 "pending_web_view_load.cc", |
| 28 "pending_web_view_load.h", | 28 "pending_web_view_load.h", |
| 29 "url_request_cloneable.cc", |
| 30 "url_request_cloneable.h", |
| 29 "web_view_application_delegate.cc", | 31 "web_view_application_delegate.cc", |
| 30 "web_view_application_delegate.h", | 32 "web_view_application_delegate.h", |
| 31 "web_view_impl.cc", | 33 "web_view_impl.cc", |
| 32 "web_view_impl.h", | 34 "web_view_impl.h", |
| 33 ] | 35 ] |
| 34 | 36 |
| 35 deps = [ | 37 deps = [ |
| 36 ":switches", | 38 ":switches", |
| 37 "//base", | 39 "//base", |
| 38 "//components/clipboard/public/interfaces", | 40 "//components/clipboard/public/interfaces", |
| (...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 98 "//components/view_manager/public/interfaces", | 100 "//components/view_manager/public/interfaces", |
| 99 "//components/web_view/public/interfaces", | 101 "//components/web_view/public/interfaces", |
| 100 "//mojo/application/public/cpp:sources", | 102 "//mojo/application/public/cpp:sources", |
| 101 "//mojo/application/public/cpp:test_support", | 103 "//mojo/application/public/cpp:test_support", |
| 102 "//ui/mojo/geometry:interfaces", | 104 "//ui/mojo/geometry:interfaces", |
| 103 "//ui/mojo/geometry:util", | 105 "//ui/mojo/geometry:util", |
| 104 ] | 106 ] |
| 105 | 107 |
| 106 data_deps = [ "//components/view_manager" ] | 108 data_deps = [ "//components/view_manager" ] |
| 107 } | 109 } |
| OLD | NEW |