| 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/shell/public/cpp/service.gni") | 7 import("//services/shell/public/cpp/service.gni") |
| 8 import("//services/shell/public/service_manifest.gni") | 8 import("//services/shell/public/service_manifest.gni") |
| 9 import("//tools/grit/repack.gni") | 9 import("//tools/grit/repack.gni") |
| 10 | 10 |
| (...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 44 "context_menu_mus.h", | 44 "context_menu_mus.h", |
| 45 "disconnected_app_handler.cc", | 45 "disconnected_app_handler.cc", |
| 46 "disconnected_app_handler.h", | 46 "disconnected_app_handler.h", |
| 47 "drag_window_resizer.cc", | 47 "drag_window_resizer.cc", |
| 48 "drag_window_resizer.h", | 48 "drag_window_resizer.h", |
| 49 "frame/custom_frame_view_mus.cc", | 49 "frame/custom_frame_view_mus.cc", |
| 50 "frame/custom_frame_view_mus.h", | 50 "frame/custom_frame_view_mus.h", |
| 51 "frame/detached_title_area_renderer.cc", | 51 "frame/detached_title_area_renderer.cc", |
| 52 "frame/detached_title_area_renderer.h", | 52 "frame/detached_title_area_renderer.h", |
| 53 "frame/detached_title_area_renderer_host.h", | 53 "frame/detached_title_area_renderer_host.h", |
| 54 "keyboard_ui_mus.cc", |
| 55 "keyboard_ui_mus.h", |
| 54 "layout_manager.cc", | 56 "layout_manager.cc", |
| 55 "layout_manager.h", | 57 "layout_manager.h", |
| 56 "move_event_handler.cc", | 58 "move_event_handler.cc", |
| 57 "move_event_handler.h", | 59 "move_event_handler.h", |
| 58 "native_widget_factory_mus.cc", | 60 "native_widget_factory_mus.cc", |
| 59 "native_widget_factory_mus.h", | 61 "native_widget_factory_mus.h", |
| 60 "new_window_delegate_mus.cc", | 62 "new_window_delegate_mus.cc", |
| 61 "new_window_delegate_mus.h", | 63 "new_window_delegate_mus.h", |
| 62 "non_client_frame_controller.cc", | 64 "non_client_frame_controller.cc", |
| 63 "non_client_frame_controller.h", | 65 "non_client_frame_controller.h", |
| (...skipping 20 matching lines...) Expand all Loading... |
| 84 "window_manager_observer.h", | 86 "window_manager_observer.h", |
| 85 ] | 87 ] |
| 86 | 88 |
| 87 defines = [ "NOTIMPLEMENTED_POLICY=5" ] | 89 defines = [ "NOTIMPLEMENTED_POLICY=5" ] |
| 88 | 90 |
| 89 deps = [ | 91 deps = [ |
| 90 "//components/user_manager", | 92 "//components/user_manager", |
| 91 "//components/wallpaper", | 93 "//components/wallpaper", |
| 92 "//ui/app_list/presenter", | 94 "//ui/app_list/presenter", |
| 93 "//ui/app_list/presenter:mojom", | 95 "//ui/app_list/presenter:mojom", |
| 96 "//ui/keyboard:mojom", |
| 94 "//ui/message_center", | 97 "//ui/message_center", |
| 95 ] | 98 ] |
| 96 | 99 |
| 97 public_deps = [ | 100 public_deps = [ |
| 98 "//ash", | 101 "//ash", |
| 99 "//ash/public/interfaces", | 102 "//ash/public/interfaces", |
| 100 "//base", | 103 "//base", |
| 101 "//mash/public/interfaces", | 104 "//mash/public/interfaces", |
| 102 "//mash/session/public/interfaces", | 105 "//mash/session/public/interfaces", |
| 103 "//mojo/common:common_base", | 106 "//mojo/common:common_base", |
| (...skipping 133 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 237 "//ui/views/mus", | 240 "//ui/views/mus", |
| 238 ] | 241 ] |
| 239 | 242 |
| 240 data_deps = [ | 243 data_deps = [ |
| 241 ":mus", | 244 ":mus", |
| 242 "//mash/quick_launch", | 245 "//mash/quick_launch", |
| 243 ] | 246 ] |
| 244 | 247 |
| 245 defines = [ "NOTIMPLEMENTED_POLICY=5" ] | 248 defines = [ "NOTIMPLEMENTED_POLICY=5" ] |
| 246 } | 249 } |
| OLD | NEW |