| 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/tools/bindings/mojom.gni") | 6 import("//mojo/public/tools/bindings/mojom.gni") |
| 7 import("//services/shell/public/cpp/service.gni") | 7 import("//services/shell/public/cpp/service.gni") |
| 8 import("//services/shell/public/service_manifest.gni") | 8 import("//services/shell/public/service_manifest.gni") |
| 9 import("//tools/grit/repack.gni") | 9 import("//tools/grit/repack.gni") |
| 10 | 10 |
| (...skipping 178 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 189 "accelerators/accelerator_registrar_unittest.cc", | 189 "accelerators/accelerator_registrar_unittest.cc", |
| 190 "app_launch_unittest.cc", | 190 "app_launch_unittest.cc", |
| 191 "bridge/wm_shell_mus_test_api.h", | 191 "bridge/wm_shell_mus_test_api.h", |
| 192 "bridge/wm_window_mus_test_api.h", | 192 "bridge/wm_window_mus_test_api.h", |
| 193 "layout_manager_unittest.cc", | 193 "layout_manager_unittest.cc", |
| 194 "root_window_controller_unittest.cc", | 194 "root_window_controller_unittest.cc", |
| 195 "test/wm_test_base.cc", | 195 "test/wm_test_base.cc", |
| 196 "test/wm_test_base.h", | 196 "test/wm_test_base.h", |
| 197 "test/wm_test_helper.cc", | 197 "test/wm_test_helper.cc", |
| 198 "test/wm_test_helper.h", | 198 "test/wm_test_helper.h", |
| 199 "test/wm_test_screen.cc", | |
| 200 "test/wm_test_screen.h", | |
| 201 "window_manager_unittest.cc", | 199 "window_manager_unittest.cc", |
| 202 "wm/container_finder_unittest.cc", | 200 "wm/container_finder_unittest.cc", |
| 203 "wm/mru_window_tracker_unittest.cc", | 201 "wm/mru_window_tracker_unittest.cc", |
| 204 "workspace/workspace_layout_manager_unittest.cc", | 202 "workspace/workspace_layout_manager_unittest.cc", |
| 205 ] | 203 ] |
| 206 | 204 |
| 207 deps = [ | 205 deps = [ |
| 208 ":lib", | 206 ":lib", |
| 209 ":resources", | 207 ":resources", |
| 210 "//ash", | 208 "//ash", |
| (...skipping 24 matching lines...) Expand all Loading... |
| 235 "//ui/views/mus", | 233 "//ui/views/mus", |
| 236 ] | 234 ] |
| 237 | 235 |
| 238 data_deps = [ | 236 data_deps = [ |
| 239 ":mus", | 237 ":mus", |
| 240 "//mash/quick_launch", | 238 "//mash/quick_launch", |
| 241 ] | 239 ] |
| 242 | 240 |
| 243 defines = [ "NOTIMPLEMENTED_POLICY=5" ] | 241 defines = [ "NOTIMPLEMENTED_POLICY=5" ] |
| 244 } | 242 } |
| OLD | NEW |