| 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 20 matching lines...) Expand all Loading... |
| 31 "bridge/wm_root_window_controller_mus.cc", | 31 "bridge/wm_root_window_controller_mus.cc", |
| 32 "bridge/wm_root_window_controller_mus.h", | 32 "bridge/wm_root_window_controller_mus.h", |
| 33 "bridge/wm_shelf_mus.cc", | 33 "bridge/wm_shelf_mus.cc", |
| 34 "bridge/wm_shelf_mus.h", | 34 "bridge/wm_shelf_mus.h", |
| 35 "bridge/wm_shell_mus.cc", | 35 "bridge/wm_shell_mus.cc", |
| 36 "bridge/wm_shell_mus.h", | 36 "bridge/wm_shell_mus.h", |
| 37 "bridge/wm_window_mus.cc", | 37 "bridge/wm_window_mus.cc", |
| 38 "bridge/wm_window_mus.h", | 38 "bridge/wm_window_mus.h", |
| 39 "bridge/workspace_event_handler_mus.cc", | 39 "bridge/workspace_event_handler_mus.cc", |
| 40 "bridge/workspace_event_handler_mus.h", | 40 "bridge/workspace_event_handler_mus.h", |
| 41 "container_ids.cc", | |
| 42 "container_ids.h", | |
| 43 "context_menu_mus.cc", | 41 "context_menu_mus.cc", |
| 44 "context_menu_mus.h", | 42 "context_menu_mus.h", |
| 45 "disconnected_app_handler.cc", | 43 "disconnected_app_handler.cc", |
| 46 "disconnected_app_handler.h", | 44 "disconnected_app_handler.h", |
| 47 "drag_window_resizer.cc", | 45 "drag_window_resizer.cc", |
| 48 "drag_window_resizer.h", | 46 "drag_window_resizer.h", |
| 49 "frame/custom_frame_view_mus.cc", | 47 "frame/custom_frame_view_mus.cc", |
| 50 "frame/custom_frame_view_mus.h", | 48 "frame/custom_frame_view_mus.h", |
| 51 "frame/detached_title_area_renderer.cc", | 49 "frame/detached_title_area_renderer.cc", |
| 52 "frame/detached_title_area_renderer.h", | 50 "frame/detached_title_area_renderer.h", |
| (...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 94 "//ui/app_list/presenter", | 92 "//ui/app_list/presenter", |
| 95 "//ui/app_list/presenter:mojom", | 93 "//ui/app_list/presenter:mojom", |
| 96 "//ui/keyboard", | 94 "//ui/keyboard", |
| 97 "//ui/keyboard:mojom", | 95 "//ui/keyboard:mojom", |
| 98 "//ui/message_center", | 96 "//ui/message_center", |
| 99 ] | 97 ] |
| 100 | 98 |
| 101 public_deps = [ | 99 public_deps = [ |
| 102 "//ash", | 100 "//ash", |
| 103 "//ash/public/interfaces", | 101 "//ash/public/interfaces", |
| 102 "//ash/shared", |
| 104 "//base", | 103 "//base", |
| 105 "//base:i18n", | 104 "//base:i18n", |
| 106 "//mash/public/interfaces", | 105 "//mash/public/interfaces", |
| 107 "//mash/session/public/interfaces", | 106 "//mash/session/public/interfaces", |
| 108 "//mojo/common:common_base", | 107 "//mojo/common:common_base", |
| 109 "//services/service_manager/public/cpp", | 108 "//services/service_manager/public/cpp", |
| 110 "//services/tracing/public/cpp", | 109 "//services/tracing/public/cpp", |
| 111 "//services/ui/common:mus_common", | 110 "//services/ui/common:mus_common", |
| 112 "//services/ui/public/cpp", | 111 "//services/ui/public/cpp", |
| 113 "//services/ui/public/interfaces", | 112 "//services/ui/public/interfaces", |
| (...skipping 172 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 286 "//ui/views/mus", | 285 "//ui/views/mus", |
| 287 ] | 286 ] |
| 288 | 287 |
| 289 data_deps = [ | 288 data_deps = [ |
| 290 ":mus", | 289 ":mus", |
| 291 "//mash/quick_launch", | 290 "//mash/quick_launch", |
| 292 ] | 291 ] |
| 293 | 292 |
| 294 defines = [ "NOTIMPLEMENTED_POLICY=5" ] | 293 defines = [ "NOTIMPLEMENTED_POLICY=5" ] |
| 295 } | 294 } |
| OLD | NEW |