| 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 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 43 "non_client_frame_controller.cc", | 43 "non_client_frame_controller.cc", |
| 44 "non_client_frame_controller.h", | 44 "non_client_frame_controller.h", |
| 45 "property_util.cc", | 45 "property_util.cc", |
| 46 "property_util.h", | 46 "property_util.h", |
| 47 "shadow.cc", | 47 "shadow.cc", |
| 48 "shadow.h", | 48 "shadow.h", |
| 49 "shadow_controller.cc", | 49 "shadow_controller.cc", |
| 50 "shadow_controller.h", | 50 "shadow_controller.h", |
| 51 "shelf_layout.cc", | 51 "shelf_layout.cc", |
| 52 "shelf_layout.h", | 52 "shelf_layout.h", |
| 53 "user_window_controller_impl.cc", |
| 54 "user_window_controller_impl.h", |
| 53 "window_layout.cc", | 55 "window_layout.cc", |
| 54 "window_layout.h", | 56 "window_layout.h", |
| 55 "window_manager_application.cc", | 57 "window_manager_application.cc", |
| 56 "window_manager_application.h", | 58 "window_manager_application.h", |
| 57 "window_manager_impl.cc", | 59 "window_manager_impl.cc", |
| 58 "window_manager_impl.h", | 60 "window_manager_impl.h", |
| 59 ] | 61 ] |
| 60 | 62 |
| 61 deps = [ | 63 deps = [ |
| 62 "//base", | 64 "//base", |
| (...skipping 108 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 171 "//testing/gtest", | 173 "//testing/gtest", |
| 172 "//third_party/mojo/src/mojo/edk/system", | 174 "//third_party/mojo/src/mojo/edk/system", |
| 173 "//ui/base", | 175 "//ui/base", |
| 174 "//ui/events", | 176 "//ui/events", |
| 175 "//ui/gfx:test_support", | 177 "//ui/gfx:test_support", |
| 176 "//ui/gfx/geometry", | 178 "//ui/gfx/geometry", |
| 177 "//ui/mojo/geometry:interfaces", | 179 "//ui/mojo/geometry:interfaces", |
| 178 "//ui/mojo/geometry:util", | 180 "//ui/mojo/geometry:util", |
| 179 ] | 181 ] |
| 180 } | 182 } |
| OLD | NEW |