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 12 matching lines...) Expand all Loading... |
23 "chromeos/query_content_protection_task.h", | 23 "chromeos/query_content_protection_task.h", |
24 "chromeos/touchscreen_util.cc", | 24 "chromeos/touchscreen_util.cc", |
25 "chromeos/touchscreen_util.h", | 25 "chromeos/touchscreen_util.h", |
26 "chromeos/update_display_configuration_task.cc", | 26 "chromeos/update_display_configuration_task.cc", |
27 "chromeos/update_display_configuration_task.h", | 27 "chromeos/update_display_configuration_task.h", |
28 "display_layout_store.cc", | 28 "display_layout_store.cc", |
29 "display_layout_store.h", | 29 "display_layout_store.h", |
30 "display_manager.cc", | 30 "display_manager.cc", |
31 "display_manager.h", | 31 "display_manager.h", |
32 "display_manager_export.h", | 32 "display_manager_export.h", |
33 "display_manager_utilities.cc", | |
34 "display_manager_utilities.h", | |
35 "managed_display_info.cc", | |
36 "managed_display_info.h", | |
37 ] | 33 ] |
38 | 34 |
| 35 if (!is_ios) { |
| 36 sources += [ |
| 37 "display_manager_utilities.cc", |
| 38 "display_manager_utilities.h", |
| 39 "managed_display_info.cc", |
| 40 "managed_display_info.h", |
| 41 ] |
| 42 } |
| 43 |
39 public_deps = [ | 44 public_deps = [ |
40 "//ui/display", | 45 "//ui/display", |
41 ] | 46 ] |
42 | 47 |
43 deps = [ | 48 deps = [ |
44 "//base", | 49 "//base", |
45 "//ui/base", | 50 "//ui/base", |
46 "//ui/display/util", | 51 "//ui/display/util", |
47 "//ui/events/devices", | 52 "//ui/events/devices", |
48 "//ui/strings", | 53 "//ui/strings", |
(...skipping 22 matching lines...) Expand all Loading... |
71 configs += [ | 76 configs += [ |
72 "//build/config/linux:x11", | 77 "//build/config/linux:x11", |
73 "//build/config/linux:xext", | 78 "//build/config/linux:xext", |
74 "//build/config/linux:xi", | 79 "//build/config/linux:xi", |
75 "//build/config/linux:xrandr", | 80 "//build/config/linux:xrandr", |
76 ] | 81 ] |
77 | 82 |
78 deps += [ "//ui/events/platform" ] | 83 deps += [ "//ui/events/platform" ] |
79 } | 84 } |
80 } | 85 } |
OLD | NEW |