| 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 94 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 105 sources = [ | 105 sources = [ |
| 106 "frame_apptest.cc", | 106 "frame_apptest.cc", |
| 107 "web_view_apptest.cc", | 107 "web_view_apptest.cc", |
| 108 ] | 108 ] |
| 109 | 109 |
| 110 deps = [ | 110 deps = [ |
| 111 ":lib", | 111 ":lib", |
| 112 ":test_support", | 112 ":test_support", |
| 113 "//base", | 113 "//base", |
| 114 "//base/test:test_config", | 114 "//base/test:test_config", |
| 115 "//components/mus/public/cpp", | |
| 116 "//components/mus/public/cpp/tests:test_support", | 115 "//components/mus/public/cpp/tests:test_support", |
| 117 "//components/mus/public/interfaces", | 116 "//components/mus/public/interfaces", |
| 117 "//components/mus/public/cpp", |
| 118 "//components/web_view/public/cpp", | 118 "//components/web_view/public/cpp", |
| 119 "//components/web_view/public/interfaces", | 119 "//components/web_view/public/interfaces", |
| 120 "//mojo/application/public/cpp:sources", | 120 "//mojo/application/public/cpp:sources", |
| 121 "//mojo/application/public/cpp:test_support", | 121 "//mojo/application/public/cpp:test_support", |
| 122 "//mojo/util:filename_util", | 122 "//mojo/util:filename_util", |
| 123 "//ui/mojo/geometry:interfaces", | 123 "//ui/mojo/geometry:interfaces", |
| 124 "//ui/mojo/geometry:util", | 124 "//ui/mojo/geometry:util", |
| 125 "//url:url", | 125 "//url:url", |
| 126 ] | 126 ] |
| 127 | 127 |
| 128 data_deps = [ | 128 data_deps = [ |
| 129 ":web_view", | 129 ":web_view", |
| 130 "//components/mus", | 130 "//components/mus/vm:lib", |
| 131 ] | 131 ] |
| 132 } | 132 } |
| OLD | NEW |