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