| 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 147 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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", | 164 "../controls/native/native_view_host_aura_unittest.cc", |
| 165 "../controls/native/native_view_host_test_base.cc", | 165 "../controls/native/native_view_host_test_base.cc", |
| 166 "../controls/native/native_view_host_test_base.h", | 166 "../controls/native/native_view_host_test_base.h", |
| 167 "../controls/native/native_view_host_unittest.cc", | 167 "../controls/native/native_view_host_unittest.cc", |
| 168 "../focus/focus_manager_unittest.cc", |
| 168 "../view_targeter_unittest.cc", | 169 "../view_targeter_unittest.cc", |
| 169 "../widget/native_widget_aura_unittest.cc", | 170 "../widget/native_widget_aura_unittest.cc", |
| 170 "../widget/native_widget_unittest.cc", | 171 "../widget/native_widget_unittest.cc", |
| 171 "../widget/widget_unittest.cc", | 172 "../widget/widget_unittest.cc", |
| 172 "display_list_unittest.cc", | 173 "display_list_unittest.cc", |
| 173 "native_widget_mus_unittest.cc", | 174 "native_widget_mus_unittest.cc", |
| 174 "run_all_unittests_mus.cc", | 175 "run_all_unittests_mus.cc", |
| 175 "screen_mus_unittest.cc", | 176 "screen_mus_unittest.cc", |
| 176 "window_manager_connection_unittest.cc", | 177 "window_manager_connection_unittest.cc", |
| 177 ] | 178 ] |
| (...skipping 120 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 298 type = "exe" | 299 type = "exe" |
| 299 application_name = "views_mus_interactive_ui_tests" | 300 application_name = "views_mus_interactive_ui_tests" |
| 300 source = "interactive_ui_tests_manifest.json" | 301 source = "interactive_ui_tests_manifest.json" |
| 301 } | 302 } |
| 302 | 303 |
| 303 group("for_component") { | 304 group("for_component") { |
| 304 public_deps = [ | 305 public_deps = [ |
| 305 ":mus", | 306 ":mus", |
| 306 ] | 307 ] |
| 307 } | 308 } |
| OLD | NEW |