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/features.gni") | 5 import("//build/config/features.gni") |
6 import("//build/config/ui.gni") | 6 import("//build/config/ui.gni") |
7 import("//mojo/public/mojo_application.gni") | 7 import("//mojo/public/mojo_application.gni") |
8 import("//mojo/public/mojo_application_manifest.gni") | 8 import("//mojo/public/mojo_application_manifest.gni") |
9 import("//testing/test.gni") | 9 import("//testing/test.gni") |
10 import("//tools/grit/repack.gni") | 10 import("//tools/grit/repack.gni") |
(...skipping 142 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
153 ] | 153 ] |
154 } | 154 } |
155 | 155 |
156 test("views_mus_unittests") { | 156 test("views_mus_unittests") { |
157 testonly = true | 157 testonly = true |
158 | 158 |
159 configs += [ "//build/config:precompiled_headers" ] | 159 configs += [ "//build/config:precompiled_headers" ] |
160 | 160 |
161 # TODO(sky): add more files. | 161 # TODO(sky): add more files. |
162 sources = [ | 162 sources = [ |
| 163 "../controls/native/native_view_host_aura_unittest.cc", |
| 164 "../controls/native/native_view_host_test_base.cc", |
| 165 "../controls/native/native_view_host_test_base.h", |
| 166 "../controls/native/native_view_host_unittest.cc", |
163 "../view_targeter_unittest.cc", | 167 "../view_targeter_unittest.cc", |
| 168 "../widget/native_widget_aura_unittest.cc", |
164 "../widget/native_widget_unittest.cc", | 169 "../widget/native_widget_unittest.cc", |
165 "../widget/widget_unittest.cc", | 170 "../widget/widget_unittest.cc", |
166 "display_list_unittest.cc", | 171 "display_list_unittest.cc", |
167 "native_widget_mus_unittest.cc", | 172 "native_widget_mus_unittest.cc", |
168 "run_all_unittests_mus.cc", | 173 "run_all_unittests_mus.cc", |
169 "screen_mus_unittest.cc", | 174 "screen_mus_unittest.cc", |
170 "window_manager_connection_unittest.cc", | 175 "window_manager_connection_unittest.cc", |
171 ] | 176 ] |
172 | 177 |
173 deps = [ | 178 deps = [ |
(...skipping 118 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
292 type = "exe" | 297 type = "exe" |
293 application_name = "views_mus_interactive_ui_tests" | 298 application_name = "views_mus_interactive_ui_tests" |
294 source = "interactive_ui_tests_manifest.json" | 299 source = "interactive_ui_tests_manifest.json" |
295 } | 300 } |
296 | 301 |
297 group("for_component") { | 302 group("for_component") { |
298 public_deps = [ | 303 public_deps = [ |
299 ":mus", | 304 ":mus", |
300 ] | 305 ] |
301 } | 306 } |
OLD | NEW |