OLD | NEW |
---|---|
1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 2014 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("//build/config/ui.gni") | 5 import("//build/config/ui.gni") |
6 import("//testing/test.gni") | 6 import("//testing/test.gni") |
7 import("//third_party/mojo/src/mojo/public/mojo_application.gni") | 7 import("//third_party/mojo/src/mojo/public/mojo_application.gni") |
8 | 8 |
9 mojo_native_application("view_manager") { | 9 mojo_native_application("view_manager") { |
10 sources = [ | 10 sources = [ |
(...skipping 101 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
112 "//base", | 112 "//base", |
113 "//components/view_manager/public/cpp", | 113 "//components/view_manager/public/cpp", |
114 "//components/view_manager/public/cpp:common", | 114 "//components/view_manager/public/cpp:common", |
115 "//components/view_manager/public/interfaces", | 115 "//components/view_manager/public/interfaces", |
116 "//mojo/common", | 116 "//mojo/common", |
117 "//third_party/mojo/src/mojo/public/cpp/bindings:bindings", | 117 "//third_party/mojo/src/mojo/public/cpp/bindings:bindings", |
118 "//ui/mojo/geometry:interfaces", | 118 "//ui/mojo/geometry:interfaces", |
119 ] | 119 ] |
120 } | 120 } |
121 | 121 |
122 test("tests") { | 122 group("tests") { |
123 output_name = "view_manager_unittests" | 123 testonly = true |
124 deps = [ | |
125 ":apptests", | |
msw
2015/05/20 18:20:54
nit: if you include apptests here, the entry "//co
sky
2015/05/20 19:12:28
Done.
| |
126 ":view_manager_unittests", | |
127 "//components/view_manager/public/cpp/tests:mojo_view_manager_lib_unittests" , | |
128 ] | |
129 } | |
130 | |
131 test("view_manager_unittests") { | |
124 sources = [ | 132 sources = [ |
125 "animation_runner_unittest.cc", | 133 "animation_runner_unittest.cc", |
126 "focus_controller_unittest.cc", | 134 "focus_controller_unittest.cc", |
127 "gesture_manager_unittest.cc", | 135 "gesture_manager_unittest.cc", |
128 "scheduled_animation_group_unittest.cc", | 136 "scheduled_animation_group_unittest.cc", |
129 "server_view_drawn_tracker_unittest.cc", | 137 "server_view_drawn_tracker_unittest.cc", |
130 "test_server_view_delegate.cc", | 138 "test_server_view_delegate.cc", |
131 "test_server_view_delegate.h", | 139 "test_server_view_delegate.h", |
132 "view_coordinate_conversions_unittest.cc", | 140 "view_coordinate_conversions_unittest.cc", |
133 "view_manager_service_unittest.cc", | 141 "view_manager_service_unittest.cc", |
(...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
178 "//mojo/application", | 186 "//mojo/application", |
179 "//mojo/application:test_support", | 187 "//mojo/application:test_support", |
180 "//mojo/common", | 188 "//mojo/common", |
181 "//third_party/mojo/src/mojo/public/cpp/bindings:bindings", | 189 "//third_party/mojo/src/mojo/public/cpp/bindings:bindings", |
182 "//ui/mojo/geometry:interfaces", | 190 "//ui/mojo/geometry:interfaces", |
183 "//ui/mojo/geometry:util", | 191 "//ui/mojo/geometry:util", |
184 ] | 192 ] |
185 | 193 |
186 data_deps = [ ":view_manager" ] | 194 data_deps = [ ":view_manager" ] |
187 } | 195 } |
OLD | NEW |