| 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 400 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 411 # Talks to ChromeOS system services. | 411 # Talks to ChromeOS system services. |
| 412 "wm/lock_state_controller_unittest.cc", | 412 "wm/lock_state_controller_unittest.cc", |
| 413 | 413 |
| 414 # Maximize mode is only available on Chrome OS. | 414 # Maximize mode is only available on Chrome OS. |
| 415 "wm/maximize_mode/maximize_mode_controller_unittest.cc", | 415 "wm/maximize_mode/maximize_mode_controller_unittest.cc", |
| 416 "wm/maximize_mode/maximize_mode_window_manager_unittest.cc", | 416 "wm/maximize_mode/maximize_mode_window_manager_unittest.cc", |
| 417 | 417 |
| 418 # Can't resize on Windows Ash. http://crbug.com/165962 | 418 # Can't resize on Windows Ash. http://crbug.com/165962 |
| 419 "autoclick/autoclick_unittest.cc", | 419 "autoclick/autoclick_unittest.cc", |
| 420 "magnifier/magnification_controller_unittest.cc", | 420 "magnifier/magnification_controller_unittest.cc", |
| 421 "magnifier/partial_magnification_controller_unittest.cc", |
| 421 "sticky_keys/sticky_keys_overlay_unittest.cc", | 422 "sticky_keys/sticky_keys_overlay_unittest.cc", |
| 422 "virtual_keyboard_controller_unittest.cc", | 423 "virtual_keyboard_controller_unittest.cc", |
| 423 "wm/workspace/workspace_window_resizer_unittest.cc", | 424 "wm/workspace/workspace_window_resizer_unittest.cc", |
| 424 ] | 425 ] |
| 425 } | 426 } |
| 426 | 427 |
| 427 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] | 428 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] |
| 428 | 429 |
| 429 if (!use_x11) { | 430 if (!use_x11) { |
| 430 sources -= [ "host/ash_window_tree_host_x11_unittest.cc" ] | 431 sources -= [ "host/ash_window_tree_host_x11_unittest.cc" ] |
| (...skipping 57 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 488 configs += [ "//build/config/win:windowed" ] | 489 configs += [ "//build/config/win:windowed" ] |
| 489 deps += [ "//sandbox" ] | 490 deps += [ "//sandbox" ] |
| 490 } | 491 } |
| 491 | 492 |
| 492 if (is_chromeos) { | 493 if (is_chromeos) { |
| 493 deps += [ "//device/bluetooth" ] | 494 deps += [ "//device/bluetooth" ] |
| 494 } | 495 } |
| 495 } | 496 } |
| 496 # When adding support for isolates, please have a look at run-time dependencies | 497 # When adding support for isolates, please have a look at run-time dependencies |
| 497 # in the ash_unittests_run target in ash.gyp. | 498 # in the ash_unittests_run target in ash.gyp. |
| OLD | NEW |