| 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 114 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 125 } else { | 125 } else { |
| 126 sources -= [ | 126 sources -= [ |
| 127 "accelerators/key_hold_detector.cc", | 127 "accelerators/key_hold_detector.cc", |
| 128 "accelerators/key_hold_detector.h", | 128 "accelerators/key_hold_detector.h", |
| 129 "accelerators/magnifier_key_scroller.cc", | 129 "accelerators/magnifier_key_scroller.cc", |
| 130 "accelerators/magnifier_key_scroller.h", | 130 "accelerators/magnifier_key_scroller.h", |
| 131 "accelerators/spoken_feedback_toggler.cc", | 131 "accelerators/spoken_feedback_toggler.cc", |
| 132 "accelerators/spoken_feedback_toggler.h", | 132 "accelerators/spoken_feedback_toggler.h", |
| 133 "display/resolution_notification_controller.cc", | 133 "display/resolution_notification_controller.cc", |
| 134 "display/resolution_notification_controller.h", | 134 "display/resolution_notification_controller.h", |
| 135 "system/tray/media_security/media_capture_observer.h", | |
| 136 "system/tray/media_security/multi_profile_media_tray_item.cc", | |
| 137 "system/tray/media_security/multi_profile_media_tray_item.h", | |
| 138 "touch/touch_transformer_controller.cc", | 135 "touch/touch_transformer_controller.cc", |
| 139 "touch/touch_transformer_controller.h", | 136 "touch/touch_transformer_controller.h", |
| 140 "touch/touchscreen_util.cc", | 137 "touch/touchscreen_util.cc", |
| 141 "touch/touchscreen_util.h", | 138 "touch/touchscreen_util.h", |
| 142 "virtual_keyboard_controller.cc", | 139 "virtual_keyboard_controller.cc", |
| 143 "virtual_keyboard_controller.h", | 140 "virtual_keyboard_controller.h", |
| 144 ] | 141 ] |
| 145 } | 142 } |
| 146 | 143 |
| 147 if (!use_ozone) { | 144 if (!use_ozone) { |
| (...skipping 258 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 406 # All tests for multiple displays: not supported on Windows Ash. | 403 # All tests for multiple displays: not supported on Windows Ash. |
| 407 "wm/drag_window_resizer_unittest.cc", | 404 "wm/drag_window_resizer_unittest.cc", |
| 408 | 405 |
| 409 # Accelerometer is only available on Chrome OS. | 406 # Accelerometer is only available on Chrome OS. |
| 410 "wm/maximize_mode/maximize_mode_controller_unittest.cc", | 407 "wm/maximize_mode/maximize_mode_controller_unittest.cc", |
| 411 | 408 |
| 412 # Can't resize on Windows Ash. http://crbug.com/165962 | 409 # Can't resize on Windows Ash. http://crbug.com/165962 |
| 413 "autoclick/autoclick_unittest.cc", | 410 "autoclick/autoclick_unittest.cc", |
| 414 "magnifier/magnification_controller_unittest.cc", | 411 "magnifier/magnification_controller_unittest.cc", |
| 415 "sticky_keys/sticky_keys_overlay_unittest.cc", | 412 "sticky_keys/sticky_keys_overlay_unittest.cc", |
| 416 "system/tray/media_security/multi_profile_media_tray_item_unittest.cc", | |
| 417 "virtual_keyboard_controller_unittest.cc", | 413 "virtual_keyboard_controller_unittest.cc", |
| 418 "wm/workspace/workspace_window_resizer_unittest.cc", | 414 "wm/workspace/workspace_window_resizer_unittest.cc", |
| 419 ] | 415 ] |
| 420 } | 416 } |
| 421 | 417 |
| 422 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] | 418 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] |
| 423 | 419 |
| 424 if (!use_x11) { | 420 if (!use_x11) { |
| 425 sources -= [ "host/ash_window_tree_host_x11_unittest.cc" ] | 421 sources -= [ "host/ash_window_tree_host_x11_unittest.cc" ] |
| 426 } | 422 } |
| (...skipping 56 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 483 configs += [ "//build/config/win:windowed" ] | 479 configs += [ "//build/config/win:windowed" ] |
| 484 deps += [ "//sandbox" ] | 480 deps += [ "//sandbox" ] |
| 485 } | 481 } |
| 486 | 482 |
| 487 if (is_chromeos) { | 483 if (is_chromeos) { |
| 488 deps += [ "//device/bluetooth" ] | 484 deps += [ "//device/bluetooth" ] |
| 489 } | 485 } |
| 490 } | 486 } |
| 491 # When adding support for isolates, please have a look at run-time dependencies | 487 # When adding support for isolates, please have a look at run-time dependencies |
| 492 # in the ash_unittests_run target in ash.gyp. | 488 # in the ash_unittests_run target in ash.gyp. |
| OLD | NEW |