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 "forwarding_display_delegate.cc", |
| 39 "forwarding_display_delegate.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 = [ |
45 "//ui/display", | 47 "//ui/display", |
46 ] | 48 ] |
47 | 49 |
48 deps = [ | 50 deps = [ |
49 "//base", | 51 "//base", |
50 "//ui/base", | 52 "//ui/base", |
| 53 "//ui/display/mojo:interfaces", |
51 "//ui/display/util", | 54 "//ui/display/util", |
52 "//ui/events/devices", | 55 "//ui/events/devices", |
53 "//ui/strings", | 56 "//ui/strings", |
54 ] | 57 ] |
55 | 58 |
56 defines = [ "DISPLAY_MANAGER_IMPLEMENTATION" ] | 59 defines = [ "DISPLAY_MANAGER_IMPLEMENTATION" ] |
57 | 60 |
58 if (is_chromeos) { | 61 if (is_chromeos) { |
59 deps += [ "//chromeos" ] | 62 deps += [ "//chromeos" ] |
60 } | 63 } |
(...skipping 19 matching lines...) Expand all Loading... |
80 configs += [ | 83 configs += [ |
81 "//build/config/linux:x11", | 84 "//build/config/linux:x11", |
82 "//build/config/linux:xext", | 85 "//build/config/linux:xext", |
83 "//build/config/linux:xi", | 86 "//build/config/linux:xi", |
84 "//build/config/linux:xrandr", | 87 "//build/config/linux:xrandr", |
85 ] | 88 ] |
86 | 89 |
87 deps += [ "//ui/events/platform" ] | 90 deps += [ "//ui/events/platform" ] |
88 } | 91 } |
89 } | 92 } |
OLD | NEW |