| 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 386 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 397 ] | 397 ] |
| 398 | 398 |
| 399 if (!is_chromeos) { | 399 if (!is_chromeos) { |
| 400 sources -= [ | 400 sources -= [ |
| 401 # TODO(zork): fix this test to build on Windows. See: crosbug.com/26906 | 401 # TODO(zork): fix this test to build on Windows. See: crosbug.com/26906 |
| 402 "focus_cycler_unittest.cc", | 402 "focus_cycler_unittest.cc", |
| 403 | 403 |
| 404 # All tests for multiple displays: not supported on Windows Ash. | 404 # All tests for multiple displays: not supported on Windows Ash. |
| 405 "wm/drag_window_resizer_unittest.cc", | 405 "wm/drag_window_resizer_unittest.cc", |
| 406 | 406 |
| 407 # Accelerometer is only available on Chrome OS. | 407 # Maximize mode is only available on Chrome OS. |
| 408 "wm/maximize_mode/maximize_mode_controller_unittest.cc", | 408 "wm/maximize_mode/maximize_mode_controller_unittest.cc", |
| 409 "wm/maximize_mode/maximize_mode_window_manager_unittest.cc", |
| 409 | 410 |
| 410 # Can't resize on Windows Ash. http://crbug.com/165962 | 411 # Can't resize on Windows Ash. http://crbug.com/165962 |
| 411 "autoclick/autoclick_unittest.cc", | 412 "autoclick/autoclick_unittest.cc", |
| 412 "magnifier/magnification_controller_unittest.cc", | 413 "magnifier/magnification_controller_unittest.cc", |
| 413 "sticky_keys/sticky_keys_overlay_unittest.cc", | 414 "sticky_keys/sticky_keys_overlay_unittest.cc", |
| 414 "virtual_keyboard_controller_unittest.cc", | 415 "virtual_keyboard_controller_unittest.cc", |
| 415 "wm/workspace/workspace_window_resizer_unittest.cc", | 416 "wm/workspace/workspace_window_resizer_unittest.cc", |
| 416 ] | 417 ] |
| 417 } | 418 } |
| 418 | 419 |
| (...skipping 61 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 480 configs += [ "//build/config/win:windowed" ] | 481 configs += [ "//build/config/win:windowed" ] |
| 481 deps += [ "//sandbox" ] | 482 deps += [ "//sandbox" ] |
| 482 } | 483 } |
| 483 | 484 |
| 484 if (is_chromeos) { | 485 if (is_chromeos) { |
| 485 deps += [ "//device/bluetooth" ] | 486 deps += [ "//device/bluetooth" ] |
| 486 } | 487 } |
| 487 } | 488 } |
| 488 # When adding support for isolates, please have a look at run-time dependencies | 489 # When adding support for isolates, please have a look at run-time dependencies |
| 489 # in the ash_unittests_run target in ash.gyp. | 490 # in the ash_unittests_run target in ash.gyp. |
| OLD | NEW |