Chromium Code Reviews| 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/service_manager/public/cpp/service.gni") | 7 import("//services/service_manager/public/cpp/service.gni") |
| 8 import("//services/service_manager/public/service_manifest.gni") | 8 import("//services/service_manager/public/service_manifest.gni") |
| 9 import("//tools/grit/repack.gni") | 9 import("//tools/grit/repack.gni") |
| 10 | 10 |
| (...skipping 227 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 238 "bridge/wm_shell_mus_test_api.h", | 238 "bridge/wm_shell_mus_test_api.h", |
| 239 "bridge/wm_window_mus_test_api.h", | 239 "bridge/wm_window_mus_test_api.h", |
| 240 "layout_manager_unittest.cc", | 240 "layout_manager_unittest.cc", |
| 241 "root_window_controller_unittest.cc", | 241 "root_window_controller_unittest.cc", |
| 242 "test/ash_test_impl_mus.cc", | 242 "test/ash_test_impl_mus.cc", |
| 243 "test/ash_test_impl_mus.h", | 243 "test/ash_test_impl_mus.h", |
| 244 "test/wm_test_base.cc", | 244 "test/wm_test_base.cc", |
| 245 "test/wm_test_base.h", | 245 "test/wm_test_base.h", |
| 246 "test/wm_test_helper.cc", | 246 "test/wm_test_helper.cc", |
| 247 "test/wm_test_helper.h", | 247 "test/wm_test_helper.h", |
| 248 "window_manager_ash_unittest.cc", | |
|
mfomitchev
2016/11/18 17:36:24
Why not put the test into window_manager_unittest?
thanhph
2016/11/18 19:15:44
Done. Thanks!
| |
| 248 "window_manager_unittest.cc", | 249 "window_manager_unittest.cc", |
| 249 ] | 250 ] |
| 250 | 251 |
| 251 deps = [ | 252 deps = [ |
| 252 ":lib", | 253 ":lib", |
| 253 ":resources", | 254 ":resources", |
| 254 "//ash", | 255 "//ash", |
| 255 "//ash/common/test:test_support", | 256 "//ash/common/test:test_support", |
| 256 "//ash/public/interfaces", | 257 "//ash/public/interfaces", |
| 257 "//base", | 258 "//base", |
| (...skipping 22 matching lines...) Expand all Loading... | |
| 280 "//ui/views/mus", | 281 "//ui/views/mus", |
| 281 ] | 282 ] |
| 282 | 283 |
| 283 data_deps = [ | 284 data_deps = [ |
| 284 ":mus", | 285 ":mus", |
| 285 "//mash/quick_launch", | 286 "//mash/quick_launch", |
| 286 ] | 287 ] |
| 287 | 288 |
| 288 defines = [ "NOTIMPLEMENTED_POLICY=5" ] | 289 defines = [ "NOTIMPLEMENTED_POLICY=5" ] |
| 289 } | 290 } |
| OLD | NEW |