| 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 | 8 |
| 9 assert(use_ash) | 9 assert(use_ash) |
| 10 | 10 |
| (...skipping 95 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 106 "//ui/display/util", | 106 "//ui/display/util", |
| 107 ] | 107 ] |
| 108 } else { | 108 } else { |
| 109 sources -= [ | 109 sources -= [ |
| 110 "accelerators/key_hold_detector.cc", | 110 "accelerators/key_hold_detector.cc", |
| 111 "accelerators/key_hold_detector.h", | 111 "accelerators/key_hold_detector.h", |
| 112 "accelerators/magnifier_key_scroller.cc", | 112 "accelerators/magnifier_key_scroller.cc", |
| 113 "accelerators/magnifier_key_scroller.h", | 113 "accelerators/magnifier_key_scroller.h", |
| 114 "accelerators/spoken_feedback_toggler.cc", | 114 "accelerators/spoken_feedback_toggler.cc", |
| 115 "accelerators/spoken_feedback_toggler.h", | 115 "accelerators/spoken_feedback_toggler.h", |
| 116 "display/display_animator.cc", | |
| 117 "display/display_animator.h", | |
| 118 "display/resolution_notification_controller.cc", | 116 "display/resolution_notification_controller.cc", |
| 119 "display/resolution_notification_controller.h", | 117 "display/resolution_notification_controller.h", |
| 120 "system/tray/media_security/media_capture_observer.h", | 118 "system/tray/media_security/media_capture_observer.h", |
| 121 "system/tray/media_security/multi_profile_media_tray_item.cc", | 119 "system/tray/media_security/multi_profile_media_tray_item.cc", |
| 122 "system/tray/media_security/multi_profile_media_tray_item.h", | 120 "system/tray/media_security/multi_profile_media_tray_item.h", |
| 123 "touch/touch_transformer_controller.cc", | 121 "touch/touch_transformer_controller.cc", |
| 124 "touch/touch_transformer_controller.h", | 122 "touch/touch_transformer_controller.h", |
| 125 "touch/touchscreen_util.cc", | 123 "touch/touchscreen_util.cc", |
| 126 "touch/touchscreen_util.h", | 124 "touch/touchscreen_util.h", |
| 127 "virtual_keyboard_controller.cc", | 125 "virtual_keyboard_controller.cc", |
| (...skipping 278 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 406 configs += [ "//build/config/win:windowed" ] | 404 configs += [ "//build/config/win:windowed" ] |
| 407 deps += [ "//sandbox" ] | 405 deps += [ "//sandbox" ] |
| 408 } | 406 } |
| 409 | 407 |
| 410 if (is_chromeos) { | 408 if (is_chromeos) { |
| 411 deps += [ "//device/bluetooth" ] | 409 deps += [ "//device/bluetooth" ] |
| 412 } | 410 } |
| 413 } | 411 } |
| 414 # When adding support for isolates, please have a look at run-time dependencies | 412 # When adding support for isolates, please have a look at run-time dependencies |
| 415 # in the ash_unittests_run target in ash.gyp. | 413 # in the ash_unittests_run target in ash.gyp. |
| OLD | NEW |