| 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 160 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 171 ] | 171 ] |
| 172 } | 172 } |
| 173 | 173 |
| 174 source_set("unittests") { | 174 source_set("unittests") { |
| 175 testonly = true | 175 testonly = true |
| 176 | 176 |
| 177 sources = [ | 177 sources = [ |
| 178 "accelerator_registrar_unittest.cc", | 178 "accelerator_registrar_unittest.cc", |
| 179 "app_launch_unittest.cc", | 179 "app_launch_unittest.cc", |
| 180 "layout_manager_unittest.cc", | 180 "layout_manager_unittest.cc", |
| 181 "root_window_controller_unittest.cc", |
| 181 "test/wm_test_base.cc", | 182 "test/wm_test_base.cc", |
| 182 "test/wm_test_base.h", | 183 "test/wm_test_base.h", |
| 183 "test/wm_test_helper.cc", | 184 "test/wm_test_helper.cc", |
| 184 "test/wm_test_helper.h", | 185 "test/wm_test_helper.h", |
| 185 "test/wm_test_screen.cc", | 186 "test/wm_test_screen.cc", |
| 186 "test/wm_test_screen.h", | 187 "test/wm_test_screen.h", |
| 187 "window_manager_unittest.cc", | 188 "window_manager_unittest.cc", |
| 188 "wm/mru_window_tracker_unittest.cc", | 189 "wm/mru_window_tracker_unittest.cc", |
| 189 "workspace/workspace_layout_manager_unittest.cc", | 190 "workspace/workspace_layout_manager_unittest.cc", |
| 190 ] | 191 ] |
| (...skipping 22 matching lines...) Expand all Loading... |
| 213 "//ui/gfx/geometry", | 214 "//ui/gfx/geometry", |
| 214 "//ui/gfx/geometry/mojo", | 215 "//ui/gfx/geometry/mojo", |
| 215 "//ui/views/mus", | 216 "//ui/views/mus", |
| 216 ] | 217 ] |
| 217 | 218 |
| 218 data_deps = [ | 219 data_deps = [ |
| 219 ":mus", | 220 ":mus", |
| 220 "//mash/quick_launch", | 221 "//mash/quick_launch", |
| 221 ] | 222 ] |
| 222 } | 223 } |
| OLD | NEW |