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", | |
59 "wallpaper_delegate_mus.cc", | 57 "wallpaper_delegate_mus.cc", |
60 "wallpaper_delegate_mus.h", | 58 "wallpaper_delegate_mus.h", |
61 "window_manager.cc", | 59 "window_manager.cc", |
62 "window_manager.h", | 60 "window_manager.h", |
63 "window_manager_application.cc", | 61 "window_manager_application.cc", |
64 "window_manager_application.h", | 62 "window_manager_application.h", |
65 "window_properties.cc", | 63 "window_properties.cc", |
66 "window_properties.h", | 64 "window_properties.h", |
67 ] | 65 ] |
68 | 66 |
69 defines = [ "NOTIMPLEMENTED_POLICY=5" ] | 67 defines = [ "NOTIMPLEMENTED_POLICY=5" ] |
70 | 68 |
71 deps = [ | 69 deps = [ |
72 "//chromeos", | 70 "//chromeos", |
73 "//chromeos:power_manager_proto", | 71 "//chromeos:power_manager_proto", |
74 "//components/user_manager", | 72 "//components/user_manager", |
75 "//components/wallpaper", | 73 "//components/wallpaper", |
76 "//device/bluetooth", | 74 "//device/bluetooth", |
77 "//services/ui/public/interfaces/input_devices", | |
78 "//ui/app_list/presenter", | 75 "//ui/app_list/presenter", |
79 "//ui/app_list/presenter:mojom", | 76 "//ui/app_list/presenter:mojom", |
80 "//ui/chromeos", | 77 "//ui/chromeos", |
81 "//ui/display/manager", | 78 "//ui/display/manager", |
82 "//ui/display/manager/chromeos/mojo:interfaces", | |
83 "//ui/keyboard", | 79 "//ui/keyboard", |
84 "//ui/keyboard:mojom", | 80 "//ui/keyboard:mojom", |
85 "//ui/message_center", | 81 "//ui/message_center", |
86 ] | 82 ] |
87 | 83 |
88 public_deps = [ | 84 public_deps = [ |
89 "//ash", | 85 "//ash", |
90 "//ash/public/cpp:ash_public_cpp", | 86 "//ash/public/cpp:ash_public_cpp", |
91 "//base", | 87 "//base", |
92 "//base:i18n", | 88 "//base:i18n", |
(...skipping 139 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
232 "//ui/views/mus", | 228 "//ui/views/mus", |
233 ] | 229 ] |
234 | 230 |
235 data_deps = [ | 231 data_deps = [ |
236 ":mus", | 232 ":mus", |
237 "//mash/quick_launch", | 233 "//mash/quick_launch", |
238 ] | 234 ] |
239 | 235 |
240 defines = [ "NOTIMPLEMENTED_POLICY=5" ] | 236 defines = [ "NOTIMPLEMENTED_POLICY=5" ] |
241 } | 237 } |
OLD | NEW |