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 75 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
86 "//testing/gtest", | 86 "//testing/gtest", |
87 ] | 87 ] |
88 } | 88 } |
89 | 89 |
90 mojo_native_application("apptests") { | 90 mojo_native_application("apptests") { |
91 output_name = "web_view_apptests" | 91 output_name = "web_view_apptests" |
92 testonly = true | 92 testonly = true |
93 | 93 |
94 sources = [ | 94 sources = [ |
95 "frame_apptest.cc", | 95 "frame_apptest.cc", |
| 96 "web_view_apptest.cc", |
96 ] | 97 ] |
97 | 98 |
98 deps = [ | 99 deps = [ |
99 ":lib", | 100 ":lib", |
100 ":test_support", | 101 ":test_support", |
101 "//base", | 102 "//base", |
102 "//base/test:test_config", | 103 "//base/test:test_config", |
103 "//components/view_manager/public/cpp", | 104 "//components/view_manager/public/cpp", |
| 105 "//components/view_manager/public/cpp/tests:test_support", |
104 "//components/view_manager/public/interfaces", | 106 "//components/view_manager/public/interfaces", |
| 107 "//components/web_view/public/cpp", |
105 "//components/web_view/public/interfaces", | 108 "//components/web_view/public/interfaces", |
106 "//mojo/application/public/cpp:sources", | 109 "//mojo/application/public/cpp:sources", |
107 "//mojo/application/public/cpp:test_support", | 110 "//mojo/application/public/cpp:test_support", |
| 111 "//mojo/util:filename_util", |
108 "//ui/mojo/geometry:interfaces", | 112 "//ui/mojo/geometry:interfaces", |
109 "//ui/mojo/geometry:util", | 113 "//ui/mojo/geometry:util", |
| 114 "//url:url", |
110 ] | 115 ] |
111 | 116 |
112 data_deps = [ "//components/view_manager" ] | 117 data_deps = [ "//components/view_manager" ] |
113 } | 118 } |
OLD | NEW |