| 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("//testing/test.gni") | 7 import("//testing/test.gni") |
| 8 import("//ui/base/ui_features.gni") | 8 import("//ui/base/ui_features.gni") |
| 9 | 9 |
| 10 assert(use_aura) | 10 assert(use_aura) |
| (...skipping 391 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 402 sources -= [ | 402 sources -= [ |
| 403 # TODO(zork): fix this test to build on Windows. See: crosbug.com/26906 | 403 # TODO(zork): fix this test to build on Windows. See: crosbug.com/26906 |
| 404 "focus_cycler_unittest.cc", | 404 "focus_cycler_unittest.cc", |
| 405 | 405 |
| 406 # All tests for multiple displays: not supported on Windows Ash. | 406 # All tests for multiple displays: not supported on Windows Ash. |
| 407 "wm/drag_window_resizer_unittest.cc", | 407 "wm/drag_window_resizer_unittest.cc", |
| 408 | 408 |
| 409 # Talks to ChromeOS system services. | 409 # Talks to ChromeOS system services. |
| 410 "wm/lock_state_controller_unittest.cc", | 410 "wm/lock_state_controller_unittest.cc", |
| 411 | 411 |
| 412 # Accelerometer is only available on Chrome OS. | 412 # Maximize mode is only available on Chrome OS. |
| 413 "wm/maximize_mode/maximize_mode_controller_unittest.cc", | 413 "wm/maximize_mode/maximize_mode_controller_unittest.cc", |
| 414 "wm/maximize_mode/maximize_mode_window_manager_unittest.cc", |
| 414 | 415 |
| 415 # Can't resize on Windows Ash. http://crbug.com/165962 | 416 # Can't resize on Windows Ash. http://crbug.com/165962 |
| 416 "autoclick/autoclick_unittest.cc", | 417 "autoclick/autoclick_unittest.cc", |
| 417 "magnifier/magnification_controller_unittest.cc", | 418 "magnifier/magnification_controller_unittest.cc", |
| 418 "sticky_keys/sticky_keys_overlay_unittest.cc", | 419 "sticky_keys/sticky_keys_overlay_unittest.cc", |
| 419 "virtual_keyboard_controller_unittest.cc", | 420 "virtual_keyboard_controller_unittest.cc", |
| 420 "wm/workspace/workspace_window_resizer_unittest.cc", | 421 "wm/workspace/workspace_window_resizer_unittest.cc", |
| 421 ] | 422 ] |
| 422 } | 423 } |
| 423 | 424 |
| (...skipping 61 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 485 configs += [ "//build/config/win:windowed" ] | 486 configs += [ "//build/config/win:windowed" ] |
| 486 deps += [ "//sandbox" ] | 487 deps += [ "//sandbox" ] |
| 487 } | 488 } |
| 488 | 489 |
| 489 if (is_chromeos) { | 490 if (is_chromeos) { |
| 490 deps += [ "//device/bluetooth" ] | 491 deps += [ "//device/bluetooth" ] |
| 491 } | 492 } |
| 492 } | 493 } |
| 493 # When adding support for isolates, please have a look at run-time dependencies | 494 # When adding support for isolates, please have a look at run-time dependencies |
| 494 # in the ash_unittests_run target in ash.gyp. | 495 # in the ash_unittests_run target in ash.gyp. |
| OLD | NEW |