| 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("//services/service_manager/public/cpp/service.gni") | 7 import("//services/service_manager/public/cpp/service.gni") |
| 8 import("//services/service_manager/public/service_manifest.gni") | 8 import("//services/service_manager/public/service_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 257 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 268 | 268 |
| 269 data_deps = [ | 269 data_deps = [ |
| 270 "//ui/resources:ui_test_pak_data", | 270 "//ui/resources:ui_test_pak_data", |
| 271 ] | 271 ] |
| 272 } | 272 } |
| 273 | 273 |
| 274 test("views_aura_mus_unittests") { | 274 test("views_aura_mus_unittests") { |
| 275 testonly = true | 275 testonly = true |
| 276 | 276 |
| 277 sources = [ | 277 sources = [ |
| 278 "desktop_window_tree_host_mus_unittest.cc", |
| 278 "pointer_watcher_event_router2_unittest.cc", | 279 "pointer_watcher_event_router2_unittest.cc", |
| 279 "run_all_unittests_aura_mus.cc", | 280 "run_all_unittests_aura_mus.cc", |
| 280 "screen_mus_unittest.cc", | 281 "screen_mus_unittest.cc", |
| 281 ] | 282 ] |
| 282 | 283 |
| 283 configs += [ "//build/config:precompiled_headers" ] | 284 configs += [ "//build/config:precompiled_headers" ] |
| 284 | 285 |
| 285 deps = [ | 286 deps = [ |
| 286 ":mus", | 287 ":mus", |
| 287 ":test_support_aura_mus", | 288 ":test_support_aura_mus", |
| (...skipping 118 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 406 | 407 |
| 407 service_manifest("unittests_aura_manifest") { | 408 service_manifest("unittests_aura_manifest") { |
| 408 name = "views_aura_mus_unittests" | 409 name = "views_aura_mus_unittests" |
| 409 source = "unittests_aura_manifest.json" | 410 source = "unittests_aura_manifest.json" |
| 410 } | 411 } |
| 411 | 412 |
| 412 service_manifest("interactive_ui_tests_manifest") { | 413 service_manifest("interactive_ui_tests_manifest") { |
| 413 name = "views_mus_interactive_ui_tests" | 414 name = "views_mus_interactive_ui_tests" |
| 414 source = "interactive_ui_tests_manifest.json" | 415 source = "interactive_ui_tests_manifest.json" |
| 415 } | 416 } |
| OLD | NEW |