OLD | NEW |
1 # Copyright 2015 The Chromium Authors. All rights reserved. | 1 # Copyright 2015 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 import("//mojo/public/tools/bindings/mojom.gni") | 6 import("//mojo/public/tools/bindings/mojom.gni") |
7 import("//services/service_manager/public/cpp/service.gni") | 7 import("//services/service_manager/public/cpp/service.gni") |
8 import("//services/service_manager/public/service_manifest.gni") | 8 import("//services/service_manager/public/service_manifest.gni") |
9 import("//tools/grit/repack.gni") | 9 import("//tools/grit/repack.gni") |
10 | 10 |
(...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
47 "property_util.cc", | 47 "property_util.cc", |
48 "property_util.h", | 48 "property_util.h", |
49 "screen_mus.cc", | 49 "screen_mus.cc", |
50 "screen_mus.h", | 50 "screen_mus.h", |
51 "shell_delegate_mus.cc", | 51 "shell_delegate_mus.cc", |
52 "shell_delegate_mus.h", | 52 "shell_delegate_mus.h", |
53 "system_tray_delegate_mus.cc", | 53 "system_tray_delegate_mus.cc", |
54 "system_tray_delegate_mus.h", | 54 "system_tray_delegate_mus.h", |
55 "top_level_window_factory.cc", | 55 "top_level_window_factory.cc", |
56 "top_level_window_factory.h", | 56 "top_level_window_factory.h", |
| 57 "touch_transform_setter_mus.cc", |
| 58 "touch_transform_setter_mus.h", |
57 "wallpaper_delegate_mus.cc", | 59 "wallpaper_delegate_mus.cc", |
58 "wallpaper_delegate_mus.h", | 60 "wallpaper_delegate_mus.h", |
59 "window_manager.cc", | 61 "window_manager.cc", |
60 "window_manager.h", | 62 "window_manager.h", |
61 "window_manager_application.cc", | 63 "window_manager_application.cc", |
62 "window_manager_application.h", | 64 "window_manager_application.h", |
63 "window_properties.cc", | 65 "window_properties.cc", |
64 "window_properties.h", | 66 "window_properties.h", |
65 ] | 67 ] |
66 | 68 |
67 defines = [ "NOTIMPLEMENTED_POLICY=5" ] | 69 defines = [ "NOTIMPLEMENTED_POLICY=5" ] |
68 | 70 |
69 deps = [ | 71 deps = [ |
70 "//chromeos", | 72 "//chromeos", |
71 "//chromeos:power_manager_proto", | 73 "//chromeos:power_manager_proto", |
72 "//components/user_manager", | 74 "//components/user_manager", |
73 "//components/wallpaper", | 75 "//components/wallpaper", |
74 "//device/bluetooth", | 76 "//device/bluetooth", |
| 77 "//services/ui/public/interfaces/input_devices", |
75 "//ui/app_list/presenter", | 78 "//ui/app_list/presenter", |
76 "//ui/app_list/presenter:mojom", | 79 "//ui/app_list/presenter:mojom", |
77 "//ui/chromeos", | 80 "//ui/chromeos", |
78 "//ui/display/manager", | 81 "//ui/display/manager", |
| 82 "//ui/display/manager/chromeos/mojo:interfaces", |
79 "//ui/keyboard", | 83 "//ui/keyboard", |
80 "//ui/keyboard:mojom", | 84 "//ui/keyboard:mojom", |
81 "//ui/message_center", | 85 "//ui/message_center", |
82 ] | 86 ] |
83 | 87 |
84 public_deps = [ | 88 public_deps = [ |
85 "//ash", | 89 "//ash", |
86 "//ash/public/cpp:ash_public_cpp", | 90 "//ash/public/cpp:ash_public_cpp", |
87 "//base", | 91 "//base", |
88 "//base:i18n", | 92 "//base:i18n", |
(...skipping 139 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
228 "//ui/views/mus", | 232 "//ui/views/mus", |
229 ] | 233 ] |
230 | 234 |
231 data_deps = [ | 235 data_deps = [ |
232 ":mus", | 236 ":mus", |
233 "//mash/quick_launch", | 237 "//mash/quick_launch", |
234 ] | 238 ] |
235 | 239 |
236 defines = [ "NOTIMPLEMENTED_POLICY=5" ] | 240 defines = [ "NOTIMPLEMENTED_POLICY=5" ] |
237 } | 241 } |
OLD | NEW |