| 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 62 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 73 "status_layout_manager.cc", | 73 "status_layout_manager.cc", |
| 74 "status_layout_manager.h", | 74 "status_layout_manager.h", |
| 75 "user_window_controller_impl.cc", | 75 "user_window_controller_impl.cc", |
| 76 "user_window_controller_impl.h", | 76 "user_window_controller_impl.h", |
| 77 "window_manager.cc", | 77 "window_manager.cc", |
| 78 "window_manager.h", | 78 "window_manager.h", |
| 79 "window_manager_application.cc", | 79 "window_manager_application.cc", |
| 80 "window_manager_application.h", | 80 "window_manager_application.h", |
| 81 ] | 81 ] |
| 82 | 82 |
| 83 deps = [ | 83 public_deps = [ |
| 84 "//ash", | 84 "//ash", |
| 85 "//base", | 85 "//base", |
| 86 "//components/mus/common:mus_common", | 86 "//components/mus/common:mus_common", |
| 87 "//components/mus/public/cpp", | 87 "//components/mus/public/cpp", |
| 88 "//components/mus/public/interfaces", | 88 "//components/mus/public/interfaces", |
| 89 "//mash/session/public/interfaces", | 89 "//mash/session/public/interfaces", |
| 90 "//mash/wm/public/interfaces", | 90 "//mash/wm/public/interfaces", |
| 91 "//mash/wm/resources", | 91 "//mash/wm/resources", |
| 92 "//mojo/common:common_base", | 92 "//mojo/common:common_base", |
| 93 "//services/shell/public/cpp", | 93 "//services/shell/public/cpp", |
| (...skipping 86 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 180 "//base/test:test_config", | 180 "//base/test:test_config", |
| 181 "//components/mus/common:mus_common", | 181 "//components/mus/common:mus_common", |
| 182 "//components/mus/public/cpp", | 182 "//components/mus/public/cpp", |
| 183 "//components/mus/public/cpp/tests:test_support", | 183 "//components/mus/public/cpp/tests:test_support", |
| 184 "//components/mus/public/cpp/tests:unittest_support", | 184 "//components/mus/public/cpp/tests:unittest_support", |
| 185 "//components/mus/public/interfaces", | 185 "//components/mus/public/interfaces", |
| 186 "//mash/wm/public/interfaces", | 186 "//mash/wm/public/interfaces", |
| 187 "//mojo/edk/system", | 187 "//mojo/edk/system", |
| 188 "//mojo/public/cpp/system", | 188 "//mojo/public/cpp/system", |
| 189 "//services/shell/public/cpp:shell_test_support", | 189 "//services/shell/public/cpp:shell_test_support", |
| 190 "//skia", |
| 190 "//testing/gtest", | 191 "//testing/gtest", |
| 191 "//ui/aura", | 192 "//ui/aura", |
| 192 "//ui/base", | 193 "//ui/base", |
| 193 "//ui/display", | 194 "//ui/display", |
| 194 "//ui/events", | 195 "//ui/events", |
| 195 "//ui/events/mojo", | 196 "//ui/events/mojo", |
| 196 "//ui/gfx:test_support", | 197 "//ui/gfx:test_support", |
| 197 "//ui/gfx/geometry", | 198 "//ui/gfx/geometry", |
| 198 "//ui/gfx/geometry/mojo", | 199 "//ui/gfx/geometry/mojo", |
| 199 "//ui/views/mus", | 200 "//ui/views/mus", |
| 200 ] | 201 ] |
| 201 | 202 |
| 202 data_deps = [ | 203 data_deps = [ |
| 203 ":wm", | 204 ":wm", |
| 204 "//mash/quick_launch", | 205 "//mash/quick_launch", |
| 205 ] | 206 ] |
| 206 } | 207 } |
| OLD | NEW |