| 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 |
| (...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 63 "window_layout.cc", | 63 "window_layout.cc", |
| 64 "window_layout.h", | 64 "window_layout.h", |
| 65 "window_manager.cc", | 65 "window_manager.cc", |
| 66 "window_manager.h", | 66 "window_manager.h", |
| 67 "window_manager_application.cc", | 67 "window_manager_application.cc", |
| 68 "window_manager_application.h", | 68 "window_manager_application.h", |
| 69 ] | 69 ] |
| 70 | 70 |
| 71 deps = [ | 71 deps = [ |
| 72 "//base", | 72 "//base", |
| 73 "//components/mus/common:mus_common", | 73 "//components/mus/common", |
| 74 "//components/mus/public/cpp", | 74 "//components/mus/public/cpp", |
| 75 "//components/mus/public/interfaces", | 75 "//components/mus/public/interfaces", |
| 76 "//mash/shell/public/interfaces", | 76 "//mash/shell/public/interfaces", |
| 77 "//mash/wm/public/interfaces", | 77 "//mash/wm/public/interfaces", |
| 78 "//mash/wm/resources", | 78 "//mash/wm/resources", |
| 79 "//mojo/common:common_base", | 79 "//mojo/common:common_base", |
| 80 "//mojo/converters/geometry", | 80 "//mojo/converters/geometry", |
| 81 "//mojo/converters/input_events", | 81 "//mojo/converters/input_events", |
| 82 "//mojo/services/tracing/public/cpp", | 82 "//mojo/services/tracing/public/cpp", |
| 83 "//mojo/shell/public/cpp", | 83 "//mojo/shell/public/cpp", |
| (...skipping 116 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 200 "//mojo/public/cpp/system", | 200 "//mojo/public/cpp/system", |
| 201 "//testing/gtest", | 201 "//testing/gtest", |
| 202 "//ui/base", | 202 "//ui/base", |
| 203 "//ui/events", | 203 "//ui/events", |
| 204 "//ui/gfx:test_support", | 204 "//ui/gfx:test_support", |
| 205 "//ui/gfx/geometry", | 205 "//ui/gfx/geometry", |
| 206 "//ui/mojo/geometry:interfaces", | 206 "//ui/mojo/geometry:interfaces", |
| 207 "//ui/mojo/geometry:util", | 207 "//ui/mojo/geometry:util", |
| 208 ] | 208 ] |
| 209 } | 209 } |
| OLD | NEW |