| 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/display_change_observer.cc", |
| 14 "chromeos/display_change_observer.h", |
| 13 "chromeos/display_configurator.cc", | 15 "chromeos/display_configurator.cc", |
| 14 "chromeos/display_configurator.h", | 16 "chromeos/display_configurator.h", |
| 15 "chromeos/display_layout_manager.h", | 17 "chromeos/display_layout_manager.h", |
| 16 "chromeos/display_snapshot_virtual.cc", | 18 "chromeos/display_snapshot_virtual.cc", |
| 17 "chromeos/display_snapshot_virtual.h", | 19 "chromeos/display_snapshot_virtual.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", |
| 22 "chromeos/touchscreen_util.cc", | 24 "chromeos/touchscreen_util.cc", |
| (...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 69 configs += [ | 71 configs += [ |
| 70 "//build/config/linux:x11", | 72 "//build/config/linux:x11", |
| 71 "//build/config/linux:xext", | 73 "//build/config/linux:xext", |
| 72 "//build/config/linux:xi", | 74 "//build/config/linux:xi", |
| 73 "//build/config/linux:xrandr", | 75 "//build/config/linux:xrandr", |
| 74 ] | 76 ] |
| 75 | 77 |
| 76 deps += [ "//ui/events/platform" ] | 78 deps += [ "//ui/events/platform" ] |
| 77 } | 79 } |
| 78 } | 80 } |
| OLD | NEW |