| 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/tools/bindings/mojom.gni") | 7 import("//mojo/public/tools/bindings/mojom.gni") |
| 8 import("//tools/grit/repack.gni") | 8 import("//tools/grit/repack.gni") |
| 9 | 9 |
| 10 group("tests") { | 10 group("tests") { |
| (...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 58 "window_layout.h", | 58 "window_layout.h", |
| 59 "window_manager_application.cc", | 59 "window_manager_application.cc", |
| 60 "window_manager_application.h", | 60 "window_manager_application.h", |
| 61 "window_manager_impl.cc", | 61 "window_manager_impl.cc", |
| 62 "window_manager_impl.h", | 62 "window_manager_impl.h", |
| 63 ] | 63 ] |
| 64 | 64 |
| 65 deps = [ | 65 deps = [ |
| 66 "//base", | 66 "//base", |
| 67 "//components/mus/common", | 67 "//components/mus/common", |
| 68 "//components/mus/public/cpp", | |
| 69 "//components/mus/public/interfaces", | 68 "//components/mus/public/interfaces", |
| 70 "//mash/wm/public/interfaces", | 69 "//mash/wm/public/interfaces", |
| 71 "//mash/wm/resources", | 70 "//mash/wm/resources", |
| 72 "//mojo/common:common_base", | 71 "//mojo/common:common_base", |
| 73 "//mojo/converters/geometry", | 72 "//mojo/converters/geometry", |
| 74 "//mojo/converters/input_events", | 73 "//mojo/converters/input_events", |
| 75 "//mojo/services/tracing/public/cpp", | 74 "//mojo/services/tracing/public/cpp", |
| 76 "//mojo/shell/public/cpp", | 75 "//mojo/shell/public/cpp", |
| 77 "//skia", | 76 "//skia", |
| 78 "//ui/aura", | 77 "//ui/aura", |
| 79 "//ui/events", | 78 "//ui/events", |
| 80 "//ui/gfx", | 79 "//ui/gfx", |
| 81 "//ui/gfx/geometry", | 80 "//ui/gfx/geometry", |
| 82 "//ui/mojo/init", | 81 "//ui/mojo/init", |
| 83 "//ui/resources", | 82 "//ui/resources", |
| 84 "//ui/strings", | 83 "//ui/strings", |
| 85 "//ui/views", | 84 "//ui/views", |
| 86 "//ui/views/mus:for_mojo_application", | 85 "//ui/views/mus:for_mojo_application", |
| 87 ] | 86 ] |
| 87 |
| 88 public_deps = [ |
| 89 "//components/mus/public/cpp", |
| 90 ] |
| 88 } | 91 } |
| 89 | 92 |
| 90 mojo_native_application("wm") { | 93 mojo_native_application("wm") { |
| 91 output_name = "desktop_wm" | 94 output_name = "desktop_wm" |
| 92 | 95 |
| 93 sources = [ | 96 sources = [ |
| 94 "main.cc", | 97 "main.cc", |
| 95 ] | 98 ] |
| 96 | 99 |
| 97 deps = [ | 100 deps = [ |
| (...skipping 77 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 175 "//testing/gtest", | 178 "//testing/gtest", |
| 176 "//third_party/mojo/src/mojo/edk/system", | 179 "//third_party/mojo/src/mojo/edk/system", |
| 177 "//ui/base", | 180 "//ui/base", |
| 178 "//ui/events", | 181 "//ui/events", |
| 179 "//ui/gfx:test_support", | 182 "//ui/gfx:test_support", |
| 180 "//ui/gfx/geometry", | 183 "//ui/gfx/geometry", |
| 181 "//ui/mojo/geometry:interfaces", | 184 "//ui/mojo/geometry:interfaces", |
| 182 "//ui/mojo/geometry:util", | 185 "//ui/mojo/geometry:util", |
| 183 ] | 186 ] |
| 184 } | 187 } |
| OLD | NEW |