| 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 122 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 133 "accelerators/spoken_feedback_toggler.cc", | 133 "accelerators/spoken_feedback_toggler.cc", |
| 134 "accelerators/spoken_feedback_toggler.h", | 134 "accelerators/spoken_feedback_toggler.h", |
| 135 "display/resolution_notification_controller.cc", | 135 "display/resolution_notification_controller.cc", |
| 136 "display/resolution_notification_controller.h", | 136 "display/resolution_notification_controller.h", |
| 137 "touch/touch_transformer_controller.cc", | 137 "touch/touch_transformer_controller.cc", |
| 138 "touch/touch_transformer_controller.h", | 138 "touch/touch_transformer_controller.h", |
| 139 "touch/touchscreen_util.cc", | 139 "touch/touchscreen_util.cc", |
| 140 "touch/touchscreen_util.h", | 140 "touch/touchscreen_util.h", |
| 141 "virtual_keyboard_controller.cc", | 141 "virtual_keyboard_controller.cc", |
| 142 "virtual_keyboard_controller.h", | 142 "virtual_keyboard_controller.h", |
| 143 "wm/stylus_metrics_recorder.cc", |
| 144 "wm/stylus_metrics_recorder.h", |
| 143 ] | 145 ] |
| 144 } | 146 } |
| 145 | 147 |
| 146 if (!use_ozone) { | 148 if (!use_ozone) { |
| 147 sources -= [ | 149 sources -= [ |
| 148 "wm/maximize_mode/scoped_disable_internal_mouse_and_keyboard_ozone.cc", | 150 "wm/maximize_mode/scoped_disable_internal_mouse_and_keyboard_ozone.cc", |
| 149 "wm/maximize_mode/scoped_disable_internal_mouse_and_keyboard_ozone.h", | 151 "wm/maximize_mode/scoped_disable_internal_mouse_and_keyboard_ozone.h", |
| 150 ] | 152 ] |
| 151 } | 153 } |
| 152 } | 154 } |
| (...skipping 335 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 488 configs += [ "//build/config/win:windowed" ] | 490 configs += [ "//build/config/win:windowed" ] |
| 489 deps += [ "//sandbox" ] | 491 deps += [ "//sandbox" ] |
| 490 } | 492 } |
| 491 | 493 |
| 492 if (is_chromeos) { | 494 if (is_chromeos) { |
| 493 deps += [ "//device/bluetooth" ] | 495 deps += [ "//device/bluetooth" ] |
| 494 } | 496 } |
| 495 } | 497 } |
| 496 # When adding support for isolates, please have a look at run-time dependencies | 498 # When adding support for isolates, please have a look at run-time dependencies |
| 497 # in the ash_unittests_run target in ash.gyp. | 499 # in the ash_unittests_run target in ash.gyp. |
| OLD | NEW |