| 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 | 8 |
| 9 group("wm") { | 9 group("wm") { |
| 10 testonly = true | 10 testonly = true |
| 11 deps = [ | 11 deps = [ |
| 12 ":apptests", |
| 12 ":example_wm", | 13 ":example_wm", |
| 13 ":apptests", | |
| 14 ] | 14 ] |
| 15 } | 15 } |
| 16 | 16 |
| 17 source_set("example_wm_lib") { | 17 source_set("example_wm_lib") { |
| 18 sources = [ | 18 sources = [ |
| 19 "background_layout.cc", | 19 "background_layout.cc", |
| 20 "background_layout.h", | 20 "background_layout.h", |
| 21 "layout_manager.cc", | 21 "layout_manager.cc", |
| 22 "layout_manager.h", | 22 "layout_manager.h", |
| 23 "move_loop.cc", | 23 "move_loop.cc", |
| 24 "move_loop.h", | 24 "move_loop.h", |
| 25 "non_client_frame_controller.cc", | 25 "non_client_frame_controller.cc", |
| 26 "non_client_frame_controller.h", | 26 "non_client_frame_controller.h", |
| 27 "non_client_frame_view_impl.cc", | 27 "non_client_frame_view_impl.cc", |
| 28 "non_client_frame_view_impl.h", | 28 "non_client_frame_view_impl.h", |
| 29 "property_util.cc", | 29 "property_util.cc", |
| 30 "property_util.h", | 30 "property_util.h", |
| 31 "shelf_layout.cc", | 31 "shelf_layout.cc", |
| 32 "shelf_layout.h", | 32 "shelf_layout.h", |
| 33 "window_layout.cc", | 33 "window_layout.cc", |
| 34 "window_layout.h", | 34 "window_layout.h", |
| 35 "window_manager_application.cc", | 35 "window_manager_application.cc", |
| 36 "window_manager_application.h", | 36 "window_manager_application.h", |
| 37 "window_manager_impl.cc", | 37 "window_manager_impl.cc", |
| 38 "window_manager_impl.h", | 38 "window_manager_impl.h", |
| 39 ] | 39 ] |
| 40 | 40 |
| 41 deps = [ | 41 deps = [ |
| 42 "//base", | 42 "//base", |
| 43 "//components/mus/common", |
| 43 "//components/mus/example/wm/public/interfaces", | 44 "//components/mus/example/wm/public/interfaces", |
| 44 "//components/mus/common", | |
| 45 "//components/mus/public/cpp", | 45 "//components/mus/public/cpp", |
| 46 "//components/mus/public/interfaces", | 46 "//components/mus/public/interfaces", |
| 47 "//mojo/application/public/cpp", | 47 "//mojo/application/public/cpp", |
| 48 "//mojo/common:common_base", | 48 "//mojo/common:common_base", |
| 49 "//mojo/converters/geometry", | 49 "//mojo/converters/geometry", |
| 50 "//skia", | 50 "//skia", |
| 51 "//ui/mojo/init", | 51 "//ui/mojo/init", |
| 52 "//ui/views", | 52 "//ui/views", |
| 53 "//ui/views/mus", | 53 "//ui/views/mus", |
| 54 ] | 54 ] |
| (...skipping 58 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 113 "//components/mus/public/cpp", | 113 "//components/mus/public/cpp", |
| 114 "//components/mus/public/cpp/tests:unittest_support", | 114 "//components/mus/public/cpp/tests:unittest_support", |
| 115 "//mojo/converters/geometry", | 115 "//mojo/converters/geometry", |
| 116 "//mojo/converters/input_events", | 116 "//mojo/converters/input_events", |
| 117 "//mojo/gles2", | 117 "//mojo/gles2", |
| 118 "//mojo/platform_handle", | 118 "//mojo/platform_handle", |
| 119 "//mojo/public/cpp/system", | 119 "//mojo/public/cpp/system", |
| 120 "//testing/gtest", | 120 "//testing/gtest", |
| 121 "//third_party/mojo/src/mojo/edk/system", | 121 "//third_party/mojo/src/mojo/edk/system", |
| 122 "//ui/events", | 122 "//ui/events", |
| 123 "//ui/gfx:test_support", |
| 123 "//ui/gfx/geometry", | 124 "//ui/gfx/geometry", |
| 124 "//ui/gfx:test_support", | |
| 125 "//ui/mojo/geometry:interfaces", | 125 "//ui/mojo/geometry:interfaces", |
| 126 "//ui/mojo/geometry:util", | 126 "//ui/mojo/geometry:util", |
| 127 ] | 127 ] |
| 128 } | 128 } |
| OLD | NEW |