| 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 172 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 183 "bridge/wm_window_mus_test_api.h", | 183 "bridge/wm_window_mus_test_api.h", |
| 184 "layout_manager_unittest.cc", | 184 "layout_manager_unittest.cc", |
| 185 "root_window_controller_unittest.cc", | 185 "root_window_controller_unittest.cc", |
| 186 "test/wm_test_base.cc", | 186 "test/wm_test_base.cc", |
| 187 "test/wm_test_base.h", | 187 "test/wm_test_base.h", |
| 188 "test/wm_test_helper.cc", | 188 "test/wm_test_helper.cc", |
| 189 "test/wm_test_helper.h", | 189 "test/wm_test_helper.h", |
| 190 "test/wm_test_screen.cc", | 190 "test/wm_test_screen.cc", |
| 191 "test/wm_test_screen.h", | 191 "test/wm_test_screen.h", |
| 192 "window_manager_unittest.cc", | 192 "window_manager_unittest.cc", |
| 193 "wm/container_finder_unittest.cc", |
| 193 "wm/mru_window_tracker_unittest.cc", | 194 "wm/mru_window_tracker_unittest.cc", |
| 194 "workspace/workspace_layout_manager_unittest.cc", | 195 "workspace/workspace_layout_manager_unittest.cc", |
| 195 ] | 196 ] |
| 196 | 197 |
| 197 deps = [ | 198 deps = [ |
| 198 ":lib", | 199 ":lib", |
| 199 ":resources", | 200 ":resources", |
| 200 "//ash", | 201 "//ash", |
| 201 "//ash:test_support", | 202 "//ash:test_support", |
| 202 "//ash/public/interfaces", | 203 "//ash/public/interfaces", |
| (...skipping 21 matching lines...) Expand all Loading... |
| 224 "//ui/views/mus", | 225 "//ui/views/mus", |
| 225 ] | 226 ] |
| 226 | 227 |
| 227 data_deps = [ | 228 data_deps = [ |
| 228 ":mus", | 229 ":mus", |
| 229 "//mash/quick_launch", | 230 "//mash/quick_launch", |
| 230 ] | 231 ] |
| 231 | 232 |
| 232 defines = [ "NOTIMPLEMENTED_POLICY=5" ] | 233 defines = [ "NOTIMPLEMENTED_POLICY=5" ] |
| 233 } | 234 } |
| OLD | NEW |