| 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 232 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 243 "bridge/wm_window_mus_test_api.h", | 243 "bridge/wm_window_mus_test_api.h", |
| 244 "layout_manager_unittest.cc", | 244 "layout_manager_unittest.cc", |
| 245 "root_window_controller_unittest.cc", | 245 "root_window_controller_unittest.cc", |
| 246 "test/ash_test_impl_mus.cc", | 246 "test/ash_test_impl_mus.cc", |
| 247 "test/ash_test_impl_mus.h", | 247 "test/ash_test_impl_mus.h", |
| 248 "test/wm_test_base.cc", | 248 "test/wm_test_base.cc", |
| 249 "test/wm_test_base.h", | 249 "test/wm_test_base.h", |
| 250 "test/wm_test_helper.cc", | 250 "test/wm_test_helper.cc", |
| 251 "test/wm_test_helper.h", | 251 "test/wm_test_helper.h", |
| 252 "window_manager_unittest.cc", | 252 "window_manager_unittest.cc", |
| 253 "wm/mru_window_tracker_unittest.cc", | |
| 254 ] | 253 ] |
| 255 | 254 |
| 256 deps = [ | 255 deps = [ |
| 257 ":lib", | 256 ":lib", |
| 258 ":resources", | 257 ":resources", |
| 259 "//ash", | 258 "//ash", |
| 260 "//ash/common/test:test_support", | 259 "//ash/common/test:test_support", |
| 261 "//ash/public/interfaces", | 260 "//ash/public/interfaces", |
| 262 "//base", | 261 "//base", |
| 263 "//base/test:test_config", | 262 "//base/test:test_config", |
| (...skipping 21 matching lines...) Expand all Loading... |
| 285 "//ui/views/mus", | 284 "//ui/views/mus", |
| 286 ] | 285 ] |
| 287 | 286 |
| 288 data_deps = [ | 287 data_deps = [ |
| 289 ":mus", | 288 ":mus", |
| 290 "//mash/quick_launch", | 289 "//mash/quick_launch", |
| 291 ] | 290 ] |
| 292 | 291 |
| 293 defines = [ "NOTIMPLEMENTED_POLICY=5" ] | 292 defines = [ "NOTIMPLEMENTED_POLICY=5" ] |
| 294 } | 293 } |
| OLD | NEW |