| OLD | NEW |
| 1 # Copyright 2016 The Chromium Authors. All rights reserved. | 1 # Copyright 2016 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/ui.gni") | 5 import("//build/config/ui.gni") |
| 6 | 6 |
| 7 component("manager") { | 7 component("manager") { |
| 8 sources = [ | 8 sources = [ |
| 9 "chromeos/apply_content_protection_task.cc", | 9 "chromeos/apply_content_protection_task.cc", |
| 10 "chromeos/apply_content_protection_task.h", | 10 "chromeos/apply_content_protection_task.h", |
| 11 "chromeos/configure_displays_task.cc", | 11 "chromeos/configure_displays_task.cc", |
| 12 "chromeos/configure_displays_task.h", | 12 "chromeos/configure_displays_task.h", |
| 13 "chromeos/default_touch_transform_setter.cc", |
| 14 "chromeos/default_touch_transform_setter.h", |
| 13 "chromeos/display_change_observer.cc", | 15 "chromeos/display_change_observer.cc", |
| 14 "chromeos/display_change_observer.h", | 16 "chromeos/display_change_observer.h", |
| 15 "chromeos/display_configurator.cc", | 17 "chromeos/display_configurator.cc", |
| 16 "chromeos/display_configurator.h", | 18 "chromeos/display_configurator.h", |
| 17 "chromeos/display_layout_manager.h", | 19 "chromeos/display_layout_manager.h", |
| 18 "chromeos/display_util.cc", | 20 "chromeos/display_util.cc", |
| 19 "chromeos/display_util.h", | 21 "chromeos/display_util.h", |
| 20 "chromeos/query_content_protection_task.cc", | 22 "chromeos/query_content_protection_task.cc", |
| 21 "chromeos/query_content_protection_task.h", | 23 "chromeos/query_content_protection_task.h", |
| 24 "chromeos/touch_device_transform.cc", |
| 25 "chromeos/touch_device_transform.h", |
| 22 "chromeos/touch_transform_controller.cc", | 26 "chromeos/touch_transform_controller.cc", |
| 23 "chromeos/touch_transform_controller.h", | 27 "chromeos/touch_transform_controller.h", |
| 28 "chromeos/touch_transform_setter.h", |
| 24 "chromeos/touchscreen_util.cc", | 29 "chromeos/touchscreen_util.cc", |
| 25 "chromeos/touchscreen_util.h", | 30 "chromeos/touchscreen_util.h", |
| 26 "chromeos/update_display_configuration_task.cc", | 31 "chromeos/update_display_configuration_task.cc", |
| 27 "chromeos/update_display_configuration_task.h", | 32 "chromeos/update_display_configuration_task.h", |
| 28 "display_layout_store.cc", | 33 "display_layout_store.cc", |
| 29 "display_layout_store.h", | 34 "display_layout_store.h", |
| 30 "display_manager.cc", | 35 "display_manager.cc", |
| 31 "display_manager.h", | 36 "display_manager.h", |
| 32 "display_manager_export.h", | 37 "display_manager_export.h", |
| 33 "display_manager_utilities.cc", | 38 "display_manager_utilities.cc", |
| (...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 81 configs += [ | 86 configs += [ |
| 82 "//build/config/linux:x11", | 87 "//build/config/linux:x11", |
| 83 "//build/config/linux:xext", | 88 "//build/config/linux:xext", |
| 84 "//build/config/linux:xi", | 89 "//build/config/linux:xi", |
| 85 "//build/config/linux:xrandr", | 90 "//build/config/linux:xrandr", |
| 86 ] | 91 ] |
| 87 | 92 |
| 88 deps += [ "//ui/events/platform" ] | 93 deps += [ "//ui/events/platform" ] |
| 89 } | 94 } |
| 90 } | 95 } |
| OLD | NEW |