| 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 195 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 206 | 206 |
| 207 source_set("unittests") { | 207 source_set("unittests") { |
| 208 testonly = true | 208 testonly = true |
| 209 | 209 |
| 210 sources = [ | 210 sources = [ |
| 211 "accelerators/accelerator_controller_registrar_test_api.cc", | 211 "accelerators/accelerator_controller_registrar_test_api.cc", |
| 212 "accelerators/accelerator_controller_registrar_test_api.h", | 212 "accelerators/accelerator_controller_registrar_test_api.h", |
| 213 "accelerators/accelerator_controller_unittest.cc", | 213 "accelerators/accelerator_controller_unittest.cc", |
| 214 "app_launch_unittest.cc", | 214 "app_launch_unittest.cc", |
| 215 "bridge/wm_shell_mus_test_api.h", | 215 "bridge/wm_shell_mus_test_api.h", |
| 216 "bridge/wm_window_mus_test_api.cc", | |
| 217 "bridge/wm_window_mus_test_api.h", | |
| 218 "root_window_controller_unittest.cc", | 216 "root_window_controller_unittest.cc", |
| 219 "test/ash_test_impl_mus.cc", | 217 "test/ash_test_impl_mus.cc", |
| 220 "test/ash_test_impl_mus.h", | 218 "test/ash_test_impl_mus.h", |
| 221 "test/wm_test_base.cc", | 219 "test/wm_test_base.cc", |
| 222 "test/wm_test_base.h", | 220 "test/wm_test_base.h", |
| 223 "test/wm_test_helper.cc", | 221 "test/wm_test_helper.cc", |
| 224 "test/wm_test_helper.h", | 222 "test/wm_test_helper.h", |
| 225 "window_manager_unittest.cc", | 223 "window_manager_unittest.cc", |
| 226 ] | 224 ] |
| 227 | 225 |
| 228 deps = [ | 226 deps = [ |
| 229 ":lib", | 227 ":lib", |
| 230 ":resources", | 228 ":resources", |
| 231 "//ash", | 229 "//ash", |
| 232 "//ash/common/test:test_support", | 230 "//ash/common/test:test_support", |
| 233 "//ash/public/interfaces", | 231 "//ash/public/interfaces", |
| 232 "//ash/test:test_support_without_content", |
| 234 "//base", | 233 "//base", |
| 235 "//base/test:test_config", | 234 "//base/test:test_config", |
| 236 "//base/test:test_support", | 235 "//base/test:test_support", |
| 237 "//mash/quick_launch/public/interfaces:constants", | 236 "//mash/quick_launch/public/interfaces:constants", |
| 238 "//mojo/public/cpp/system", | 237 "//mojo/public/cpp/system", |
| 239 "//services/service_manager/public/cpp:service_test_support", | 238 "//services/service_manager/public/cpp:service_test_support", |
| 240 "//services/ui/common:mus_common", | 239 "//services/ui/common:mus_common", |
| 241 "//services/ui/public/cpp", | 240 "//services/ui/public/cpp", |
| 242 "//services/ui/public/cpp/tests:unittest_support", | 241 "//services/ui/public/cpp/tests:unittest_support", |
| 243 "//services/ui/public/interfaces", | 242 "//services/ui/public/interfaces", |
| (...skipping 14 matching lines...) Expand all Loading... |
| 258 "//ui/views/mus", | 257 "//ui/views/mus", |
| 259 ] | 258 ] |
| 260 | 259 |
| 261 data_deps = [ | 260 data_deps = [ |
| 262 ":mus", | 261 ":mus", |
| 263 "//mash/quick_launch", | 262 "//mash/quick_launch", |
| 264 ] | 263 ] |
| 265 | 264 |
| 266 defines = [ "NOTIMPLEMENTED_POLICY=5" ] | 265 defines = [ "NOTIMPLEMENTED_POLICY=5" ] |
| 267 } | 266 } |
| OLD | NEW |