| 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 203 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 214 sources = [ | 214 sources = [ |
| 215 "accelerators/accelerator_controller_registrar_test_api.cc", | 215 "accelerators/accelerator_controller_registrar_test_api.cc", |
| 216 "accelerators/accelerator_controller_registrar_test_api.h", | 216 "accelerators/accelerator_controller_registrar_test_api.h", |
| 217 "accelerators/accelerator_controller_unittest.cc", | 217 "accelerators/accelerator_controller_unittest.cc", |
| 218 "accelerators/accelerator_registrar_unittest.cc", | 218 "accelerators/accelerator_registrar_unittest.cc", |
| 219 "app_launch_unittest.cc", | 219 "app_launch_unittest.cc", |
| 220 "bridge/wm_shell_mus_test_api.h", | 220 "bridge/wm_shell_mus_test_api.h", |
| 221 "bridge/wm_window_mus_test_api.h", | 221 "bridge/wm_window_mus_test_api.h", |
| 222 "layout_manager_unittest.cc", | 222 "layout_manager_unittest.cc", |
| 223 "root_window_controller_unittest.cc", | 223 "root_window_controller_unittest.cc", |
| 224 "test/ash_test_impl_mus.cc", |
| 225 "test/ash_test_impl_mus.h", |
| 224 "test/wm_test_base.cc", | 226 "test/wm_test_base.cc", |
| 225 "test/wm_test_base.h", | 227 "test/wm_test_base.h", |
| 226 "test/wm_test_helper.cc", | 228 "test/wm_test_helper.cc", |
| 227 "test/wm_test_helper.h", | 229 "test/wm_test_helper.h", |
| 228 "window_manager_unittest.cc", | 230 "window_manager_unittest.cc", |
| 229 "wm/container_finder_unittest.cc", | 231 "wm/container_finder_unittest.cc", |
| 230 "wm/mru_window_tracker_unittest.cc", | 232 "wm/mru_window_tracker_unittest.cc", |
| 231 "workspace/workspace_layout_manager_unittest.cc", | 233 "workspace/workspace_layout_manager_unittest.cc", |
| 232 ] | 234 ] |
| 233 | 235 |
| (...skipping 28 matching lines...) Expand all Loading... |
| 262 "//ui/views/mus", | 264 "//ui/views/mus", |
| 263 ] | 265 ] |
| 264 | 266 |
| 265 data_deps = [ | 267 data_deps = [ |
| 266 ":mus", | 268 ":mus", |
| 267 "//mash/quick_launch", | 269 "//mash/quick_launch", |
| 268 ] | 270 ] |
| 269 | 271 |
| 270 defines = [ "NOTIMPLEMENTED_POLICY=5" ] | 272 defines = [ "NOTIMPLEMENTED_POLICY=5" ] |
| 271 } | 273 } |
| OLD | NEW |