Chromium Code Reviews| 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 63 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 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 deps = [ |
| 84 "//ash/wm/common:ash_wm_common", | 84 "//ash:ash", |
|
James Cook
2016/05/27 16:09:09
Do we prefer //ash:ash or just //ash ? (I'm not c
sky
2016/05/27 19:19:53
I don't think there is necessarily a standard. I l
| |
| 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", |
| 94 "//services/tracing/public/cpp", | 94 "//services/tracing/public/cpp", |
| (...skipping 73 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 168 "test/wm_test_helper.h", | 168 "test/wm_test_helper.h", |
| 169 "test/wm_test_screen.cc", | 169 "test/wm_test_screen.cc", |
| 170 "test/wm_test_screen.h", | 170 "test/wm_test_screen.h", |
| 171 "window_manager_unittest.cc", | 171 "window_manager_unittest.cc", |
| 172 "workspace/workspace_layout_manager_unittest.cc", | 172 "workspace/workspace_layout_manager_unittest.cc", |
| 173 ] | 173 ] |
| 174 | 174 |
| 175 deps = [ | 175 deps = [ |
| 176 ":lib", | 176 ":lib", |
| 177 ":resources", | 177 ":resources", |
| 178 "//ash/wm/common:ash_wm_common", | 178 "//ash:ash", |
|
James Cook
2016/05/27 16:09:09
ditto
sky
2016/05/27 19:19:53
Done.
| |
| 179 "//base", | 179 "//base", |
| 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", |
| (...skipping 10 matching lines...) Expand all Loading... | |
| 199 "//ui/gfx/geometry/mojo:interfaces", | 199 "//ui/gfx/geometry/mojo:interfaces", |
| 200 "//ui/gfx/geometry/mojo:util", | 200 "//ui/gfx/geometry/mojo:util", |
| 201 "//ui/views/mus", | 201 "//ui/views/mus", |
| 202 ] | 202 ] |
| 203 | 203 |
| 204 data_deps = [ | 204 data_deps = [ |
| 205 ":wm", | 205 ":wm", |
| 206 "//mash/quick_launch", | 206 "//mash/quick_launch", |
| 207 ] | 207 ] |
| 208 } | 208 } |
| OLD | NEW |