| 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 # Historical note: Ash shipped on Windows for a couple years to support | 10 # Historical note: Ash shipped on Windows for a couple years to support |
| 11 # Windows 8 Metro mode. Windows support was removed in 2016. | 11 # Windows 8 Metro mode. Windows support was removed in 2016. |
| 12 assert(is_chromeos) | 12 assert(is_chromeos) |
| 13 assert(use_aura) | 13 assert(use_aura) |
| 14 assert(enable_hidpi) | 14 assert(enable_hidpi) |
| 15 | 15 |
| 16 component("ash") { | 16 component("ash") { |
| 17 sources = [ | 17 sources = [ |
| 18 "accelerators/accelerator_commands_aura.cc", | 18 "accelerators/accelerator_commands_aura.cc", |
| 19 "accelerators/accelerator_commands_aura.h", | 19 "accelerators/accelerator_commands_aura.h", |
| 20 "accelerators/accelerator_controller_delegate_aura.cc", | 20 "accelerators/accelerator_controller_delegate_aura.cc", |
| 21 "accelerators/accelerator_controller_delegate_aura.h", | 21 "accelerators/accelerator_controller_delegate_aura.h", |
| 22 "accelerators/accelerator_delegate.cc", | 22 "accelerators/accelerator_delegate.cc", |
| 23 "accelerators/accelerator_delegate.h", | 23 "accelerators/accelerator_delegate.h", |
| 24 "accelerators/key_hold_detector.cc", | 24 "accelerators/key_hold_detector.cc", |
| 25 "accelerators/key_hold_detector.h", | 25 "accelerators/key_hold_detector.h", |
| 26 "accelerators/magnifier_key_scroller.cc", | 26 "accelerators/magnifier_key_scroller.cc", |
| 27 "accelerators/magnifier_key_scroller.h", | 27 "accelerators/magnifier_key_scroller.h", |
| 28 "accelerators/spoken_feedback_toggler.cc", | 28 "accelerators/spoken_feedback_toggler.cc", |
| 29 "accelerators/spoken_feedback_toggler.h", | 29 "accelerators/spoken_feedback_toggler.h", |
| 30 "app_list/app_list_delegate_impl.cc", |
| 31 "app_list/app_list_delegate_impl.h", |
| 30 "app_list/app_list_presenter_delegate.cc", | 32 "app_list/app_list_presenter_delegate.cc", |
| 31 "app_list/app_list_presenter_delegate.h", | 33 "app_list/app_list_presenter_delegate.h", |
| 32 "app_list/app_list_presenter_delegate_factory.cc", | 34 "app_list/app_list_presenter_delegate_factory.cc", |
| 33 "app_list/app_list_presenter_delegate_factory.h", | 35 "app_list/app_list_presenter_delegate_factory.h", |
| 34 "ash_export.h", | 36 "ash_export.h", |
| 35 "ash_touch_exploration_manager_chromeos.cc", | 37 "ash_touch_exploration_manager_chromeos.cc", |
| 36 "ash_touch_exploration_manager_chromeos.h", | 38 "ash_touch_exploration_manager_chromeos.h", |
| 37 "aura/aura_layout_manager_adapter.cc", | 39 "aura/aura_layout_manager_adapter.cc", |
| 38 "aura/aura_layout_manager_adapter.h", | 40 "aura/aura_layout_manager_adapter.h", |
| 39 "aura/key_event_watcher_aura.cc", | 41 "aura/key_event_watcher_aura.cc", |
| (...skipping 1385 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1425 "//content/public/app:both", | 1427 "//content/public/app:both", |
| 1426 "//device/bluetooth", | 1428 "//device/bluetooth", |
| 1427 ] | 1429 ] |
| 1428 | 1430 |
| 1429 data_deps = [ | 1431 data_deps = [ |
| 1430 "//ash/common/strings:ash_test_strings", | 1432 "//ash/common/strings:ash_test_strings", |
| 1431 "//ash/resources:ash_test_resources_with_content_100_percent", | 1433 "//ash/resources:ash_test_resources_with_content_100_percent", |
| 1432 "//ash/resources:ash_test_resources_200_percent", | 1434 "//ash/resources:ash_test_resources_200_percent", |
| 1433 ] | 1435 ] |
| 1434 } | 1436 } |
| OLD | NEW |