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", |
(...skipping 17 matching lines...) Expand all Loading... |
28 "chromeos/update_display_configuration_task.cc", | 28 "chromeos/update_display_configuration_task.cc", |
29 "chromeos/update_display_configuration_task.h", | 29 "chromeos/update_display_configuration_task.h", |
30 "display_layout_store.cc", | 30 "display_layout_store.cc", |
31 "display_layout_store.h", | 31 "display_layout_store.h", |
32 "display_manager.cc", | 32 "display_manager.cc", |
33 "display_manager.h", | 33 "display_manager.h", |
34 "display_manager_export.h", | 34 "display_manager_export.h", |
35 "display_manager_utilities.cc", | 35 "display_manager_utilities.cc", |
36 "display_manager_utilities.h", | 36 "display_manager_utilities.h", |
37 "display_pref_util.h", | 37 "display_pref_util.h", |
| 38 "display_preferences.cc", |
| 39 "display_preferences.h", |
38 "json_converter.cc", | 40 "json_converter.cc", |
39 "json_converter.h", | 41 "json_converter.h", |
40 "managed_display_info.cc", | 42 "managed_display_info.cc", |
41 "managed_display_info.h", | 43 "managed_display_info.h", |
42 ] | 44 ] |
43 | 45 |
44 public_deps = [ | 46 public_deps = [ |
| 47 "//chrome/common:constants", |
| 48 "//components/prefs", |
| 49 "//services/preferences/public/cpp", |
45 "//ui/display", | 50 "//ui/display", |
46 ] | 51 ] |
47 | 52 |
48 deps = [ | 53 deps = [ |
49 "//base", | 54 "//base", |
50 "//ui/base", | 55 "//ui/base", |
51 "//ui/display/util", | 56 "//ui/display/util", |
52 "//ui/events/devices", | 57 "//ui/events/devices", |
53 "//ui/strings", | 58 "//ui/strings", |
54 ] | 59 ] |
(...skipping 25 matching lines...) Expand all Loading... |
80 configs += [ | 85 configs += [ |
81 "//build/config/linux:x11", | 86 "//build/config/linux:x11", |
82 "//build/config/linux:xext", | 87 "//build/config/linux:xext", |
83 "//build/config/linux:xi", | 88 "//build/config/linux:xi", |
84 "//build/config/linux:xrandr", | 89 "//build/config/linux:xrandr", |
85 ] | 90 ] |
86 | 91 |
87 deps += [ "//ui/events/platform" ] | 92 deps += [ "//ui/events/platform" ] |
88 } | 93 } |
89 } | 94 } |
OLD | NEW |