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/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 194 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 205 "//ash/resources", | 205 "//ash/resources", |
| 206 "//ui/resources", | 206 "//ui/resources", |
| 207 "//ui/views/resources", | 207 "//ui/views/resources", |
| 208 ] | 208 ] |
| 209 } | 209 } |
| 210 | 210 |
| 211 source_set("unittests") { | 211 source_set("unittests") { |
| 212 testonly = true | 212 testonly = true |
| 213 | 213 |
| 214 sources = [ | 214 sources = [ |
| 215 "../common/wm_window_unittest.cc", | |
|
James Cook
2016/09/28 01:19:58
Woo hoo, a common test!
| |
| 215 "accelerators/accelerator_controller_registrar_test_api.cc", | 216 "accelerators/accelerator_controller_registrar_test_api.cc", |
| 216 "accelerators/accelerator_controller_registrar_test_api.h", | 217 "accelerators/accelerator_controller_registrar_test_api.h", |
| 217 "accelerators/accelerator_controller_unittest.cc", | 218 "accelerators/accelerator_controller_unittest.cc", |
| 218 "accelerators/accelerator_registrar_unittest.cc", | 219 "accelerators/accelerator_registrar_unittest.cc", |
| 219 "app_launch_unittest.cc", | 220 "app_launch_unittest.cc", |
| 220 "bridge/wm_shell_mus_test_api.h", | 221 "bridge/wm_shell_mus_test_api.h", |
| 221 "bridge/wm_window_mus_test_api.h", | 222 "bridge/wm_window_mus_test_api.h", |
| 222 "layout_manager_unittest.cc", | 223 "layout_manager_unittest.cc", |
| 223 "root_window_controller_unittest.cc", | 224 "root_window_controller_unittest.cc", |
| 224 "test/ash_test_impl_mus.cc", | 225 "test/ash_test_impl_mus.cc", |
| (...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 264 "//ui/views/mus", | 265 "//ui/views/mus", |
| 265 ] | 266 ] |
| 266 | 267 |
| 267 data_deps = [ | 268 data_deps = [ |
| 268 ":mus", | 269 ":mus", |
| 269 "//mash/quick_launch", | 270 "//mash/quick_launch", |
| 270 ] | 271 ] |
| 271 | 272 |
| 272 defines = [ "NOTIMPLEMENTED_POLICY=5" ] | 273 defines = [ "NOTIMPLEMENTED_POLICY=5" ] |
| 273 } | 274 } |
| OLD | NEW |