| 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/mojo_application.gni") | 6 import("//mojo/public/mojo_application.gni") |
| 7 import("//mojo/public/mojo_application_manifest.gni") | 7 import("//mojo/public/mojo_application_manifest.gni") |
| 8 import("//mojo/public/tools/bindings/mojom.gni") | 8 import("//mojo/public/tools/bindings/mojom.gni") |
| 9 import("//tools/grit/repack.gni") | 9 import("//tools/grit/repack.gni") |
| 10 | 10 |
| 11 source_set("lib") { | 11 source_set("lib") { |
| 12 sources = [ | 12 sources = [ |
| 13 "accelerator_registrar_impl.cc", | 13 "accelerator_registrar_impl.cc", |
| 14 "accelerator_registrar_impl.h", | 14 "accelerator_registrar_impl.h", |
| 15 "background_layout.cc", | 15 "background_layout.cc", |
| 16 "background_layout.h", | 16 "background_layout.h", |
| 17 "bridge/mus_layout_manager_adapter.cc", |
| 18 "bridge/mus_layout_manager_adapter.h", |
| 19 "bridge/wm_globals_mus.cc", |
| 20 "bridge/wm_globals_mus.h", |
| 21 "bridge/wm_lookup_mus.cc", |
| 22 "bridge/wm_lookup_mus.h", |
| 23 "bridge/wm_root_window_controller_mus.cc", |
| 24 "bridge/wm_root_window_controller_mus.h", |
| 25 "bridge/wm_window_mus.cc", |
| 26 "bridge/wm_window_mus.h", |
| 17 "disconnected_app_handler.cc", | 27 "disconnected_app_handler.cc", |
| 18 "disconnected_app_handler.h", | 28 "disconnected_app_handler.h", |
| 19 "fill_layout.cc", | 29 "fill_layout.cc", |
| 20 "fill_layout.h", | 30 "fill_layout.h", |
| 21 "frame/caption_buttons/caption_button_types.h", | 31 "frame/caption_buttons/caption_button_types.h", |
| 22 "frame/caption_buttons/frame_caption_button.cc", | 32 "frame/caption_buttons/frame_caption_button.cc", |
| 23 "frame/caption_buttons/frame_caption_button.h", | 33 "frame/caption_buttons/frame_caption_button.h", |
| 24 "frame/caption_buttons/frame_caption_button_container_view.cc", | 34 "frame/caption_buttons/frame_caption_button_container_view.cc", |
| 25 "frame/caption_buttons/frame_caption_button_container_view.h", | 35 "frame/caption_buttons/frame_caption_button_container_view.h", |
| 26 "frame/default_header_painter.cc", | 36 "frame/default_header_painter.cc", |
| (...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 61 "user_window_controller_impl.h", | 71 "user_window_controller_impl.h", |
| 62 "window_layout.cc", | 72 "window_layout.cc", |
| 63 "window_layout.h", | 73 "window_layout.h", |
| 64 "window_manager.cc", | 74 "window_manager.cc", |
| 65 "window_manager.h", | 75 "window_manager.h", |
| 66 "window_manager_application.cc", | 76 "window_manager_application.cc", |
| 67 "window_manager_application.h", | 77 "window_manager_application.h", |
| 68 ] | 78 ] |
| 69 | 79 |
| 70 deps = [ | 80 deps = [ |
| 81 "//ash/wm/common:ash_wm_common", |
| 71 "//base", | 82 "//base", |
| 72 "//components/mus/common:mus_common", | 83 "//components/mus/common:mus_common", |
| 73 "//components/mus/public/cpp", | 84 "//components/mus/public/cpp", |
| 74 "//components/mus/public/interfaces", | 85 "//components/mus/public/interfaces", |
| 75 "//mash/session/public/interfaces", | 86 "//mash/session/public/interfaces", |
| 76 "//mash/wm/public/interfaces", | 87 "//mash/wm/public/interfaces", |
| 77 "//mash/wm/resources", | 88 "//mash/wm/resources", |
| 78 "//mojo/common:common_base", | 89 "//mojo/common:common_base", |
| 79 "//mojo/converters/geometry", | 90 "//mojo/converters/geometry", |
| 80 "//mojo/converters/input_events", | 91 "//mojo/converters/input_events", |
| 81 "//services/shell/public/cpp", | 92 "//services/shell/public/cpp", |
| 82 "//services/tracing/public/cpp", | 93 "//services/tracing/public/cpp", |
| 83 "//skia", | 94 "//skia", |
| 84 "//ui/aura", | 95 "//ui/aura", |
| 85 "//ui/events", | 96 "//ui/events", |
| 86 "//ui/gfx", | 97 "//ui/gfx", |
| 87 "//ui/gfx/geometry", | 98 "//ui/gfx/geometry", |
| 99 "//ui/mojo/display", |
| 88 "//ui/resources", | 100 "//ui/resources", |
| 89 "//ui/strings", | 101 "//ui/strings", |
| 90 "//ui/views", | 102 "//ui/views", |
| 91 "//ui/views/mus:for_mojo_application", | 103 "//ui/views/mus:for_mojo_application", |
| 92 ] | 104 ] |
| 93 } | 105 } |
| 94 | 106 |
| 95 mojo_native_application("wm") { | 107 mojo_native_application("wm") { |
| 96 output_name = "desktop_wm" | 108 output_name = "desktop_wm" |
| 97 | 109 |
| (...skipping 73 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 171 "//ui/gfx/geometry", | 183 "//ui/gfx/geometry", |
| 172 "//ui/mojo/geometry:interfaces", | 184 "//ui/mojo/geometry:interfaces", |
| 173 "//ui/mojo/geometry:util", | 185 "//ui/mojo/geometry:util", |
| 174 ] | 186 ] |
| 175 | 187 |
| 176 data_deps = [ | 188 data_deps = [ |
| 177 ":wm", | 189 ":wm", |
| 178 "//mash/quick_launch", | 190 "//mash/quick_launch", |
| 179 ] | 191 ] |
| 180 } | 192 } |
| OLD | NEW |