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