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