| 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 16 matching lines...) Expand all Loading... |
| 27 "bridge/wm_root_window_controller_mus.cc", | 27 "bridge/wm_root_window_controller_mus.cc", |
| 28 "bridge/wm_root_window_controller_mus.h", | 28 "bridge/wm_root_window_controller_mus.h", |
| 29 "bridge/wm_shelf_mus.cc", | 29 "bridge/wm_shelf_mus.cc", |
| 30 "bridge/wm_shelf_mus.h", | 30 "bridge/wm_shelf_mus.h", |
| 31 "bridge/wm_shell_mus.cc", | 31 "bridge/wm_shell_mus.cc", |
| 32 "bridge/wm_shell_mus.h", | 32 "bridge/wm_shell_mus.h", |
| 33 "bridge/wm_window_mus.cc", | 33 "bridge/wm_window_mus.cc", |
| 34 "bridge/wm_window_mus.h", | 34 "bridge/wm_window_mus.h", |
| 35 "container_ids.cc", | 35 "container_ids.cc", |
| 36 "container_ids.h", | 36 "container_ids.h", |
| 37 "context_menu_mus.cc", |
| 38 "context_menu_mus.h", |
| 37 "disconnected_app_handler.cc", | 39 "disconnected_app_handler.cc", |
| 38 "disconnected_app_handler.h", | 40 "disconnected_app_handler.h", |
| 39 "drag_window_resizer.cc", | 41 "drag_window_resizer.cc", |
| 40 "drag_window_resizer.h", | 42 "drag_window_resizer.h", |
| 41 "layout_manager.cc", | 43 "layout_manager.cc", |
| 42 "layout_manager.h", | 44 "layout_manager.h", |
| 43 "move_event_handler.cc", | 45 "move_event_handler.cc", |
| 44 "move_event_handler.h", | 46 "move_event_handler.h", |
| 47 "native_widget_factory_mus.cc", |
| 48 "native_widget_factory_mus.h", |
| 45 "new_window_delegate_mus.cc", | 49 "new_window_delegate_mus.cc", |
| 46 "new_window_delegate_mus.h", | 50 "new_window_delegate_mus.h", |
| 47 "non_client_frame_controller.cc", | 51 "non_client_frame_controller.cc", |
| 48 "non_client_frame_controller.h", | 52 "non_client_frame_controller.h", |
| 49 "property_util.cc", | 53 "property_util.cc", |
| 50 "property_util.h", | 54 "property_util.h", |
| 51 "root_window_controller.cc", | 55 "root_window_controller.cc", |
| 52 "root_window_controller.h", | 56 "root_window_controller.h", |
| 53 "screenlock_layout.cc", | 57 "screenlock_layout.cc", |
| 54 "screenlock_layout.h", | 58 "screenlock_layout.h", |
| (...skipping 158 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 213 "//ui/views/mus", | 217 "//ui/views/mus", |
| 214 ] | 218 ] |
| 215 | 219 |
| 216 data_deps = [ | 220 data_deps = [ |
| 217 ":mus", | 221 ":mus", |
| 218 "//mash/quick_launch", | 222 "//mash/quick_launch", |
| 219 ] | 223 ] |
| 220 | 224 |
| 221 defines = [ "NOTIMPLEMENTED_POLICY=5" ] | 225 defines = [ "NOTIMPLEMENTED_POLICY=5" ] |
| 222 } | 226 } |
| OLD | NEW |