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", | |
145 ] | 143 ] |
146 } | 144 } |
147 | 145 |
148 if (!use_ozone) { | 146 if (!use_ozone) { |
149 sources -= [ | 147 sources -= [ |
150 "wm/maximize_mode/scoped_disable_internal_mouse_and_keyboard_ozone.cc", | 148 "wm/maximize_mode/scoped_disable_internal_mouse_and_keyboard_ozone.cc", |
151 "wm/maximize_mode/scoped_disable_internal_mouse_and_keyboard_ozone.h", | 149 "wm/maximize_mode/scoped_disable_internal_mouse_and_keyboard_ozone.h", |
152 ] | 150 ] |
153 } | 151 } |
154 } | 152 } |
(...skipping 336 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
491 configs += [ "//build/config/win:windowed" ] | 489 configs += [ "//build/config/win:windowed" ] |
492 deps += [ "//sandbox" ] | 490 deps += [ "//sandbox" ] |
493 } | 491 } |
494 | 492 |
495 if (is_chromeos) { | 493 if (is_chromeos) { |
496 deps += [ "//device/bluetooth" ] | 494 deps += [ "//device/bluetooth" ] |
497 } | 495 } |
498 } | 496 } |
499 # 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 |
500 # in the ash_unittests_run target in ash.gyp. | 498 # in the ash_unittests_run target in ash.gyp. |
OLD | NEW |