| 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 28 matching lines...) Expand all Loading... |
| 39 "frame/non_client_frame_view_mash.cc", | 39 "frame/non_client_frame_view_mash.cc", |
| 40 "frame/non_client_frame_view_mash.h", | 40 "frame/non_client_frame_view_mash.h", |
| 41 "layout_manager.cc", | 41 "layout_manager.cc", |
| 42 "layout_manager.h", | 42 "layout_manager.h", |
| 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", |
| 50 "shadow_controller.h", |
| 49 "shelf_layout.cc", | 51 "shelf_layout.cc", |
| 50 "shelf_layout.h", | 52 "shelf_layout.h", |
| 51 "window_layout.cc", | 53 "window_layout.cc", |
| 52 "window_layout.h", | 54 "window_layout.h", |
| 53 "window_manager_application.cc", | 55 "window_manager_application.cc", |
| 54 "window_manager_application.h", | 56 "window_manager_application.h", |
| 55 "window_manager_impl.cc", | 57 "window_manager_impl.cc", |
| 56 "window_manager_impl.h", | 58 "window_manager_impl.h", |
| 57 ] | 59 ] |
| 58 | 60 |
| (...skipping 108 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 167 "//testing/gtest", | 169 "//testing/gtest", |
| 168 "//third_party/mojo/src/mojo/edk/system", | 170 "//third_party/mojo/src/mojo/edk/system", |
| 169 "//ui/base", | 171 "//ui/base", |
| 170 "//ui/events", | 172 "//ui/events", |
| 171 "//ui/gfx:test_support", | 173 "//ui/gfx:test_support", |
| 172 "//ui/gfx/geometry", | 174 "//ui/gfx/geometry", |
| 173 "//ui/mojo/geometry:interfaces", | 175 "//ui/mojo/geometry:interfaces", |
| 174 "//ui/mojo/geometry:util", | 176 "//ui/mojo/geometry:util", |
| 175 ] | 177 ] |
| 176 } | 178 } |
| OLD | NEW |