| 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 173 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 184 "//ui/chromeos/resources", | 184 "//ui/chromeos/resources", |
| 185 "//ui/resources", | 185 "//ui/resources", |
| 186 "//ui/views/resources", | 186 "//ui/views/resources", |
| 187 ] | 187 ] |
| 188 } | 188 } |
| 189 | 189 |
| 190 source_set("unittests") { | 190 source_set("unittests") { |
| 191 testonly = true | 191 testonly = true |
| 192 | 192 |
| 193 sources = [ | 193 sources = [ |
| 194 "accelerators/accelerator_controller_registrar_test_api.cc", | |
| 195 "accelerators/accelerator_controller_registrar_test_api.h", | |
| 196 "accelerators/accelerator_controller_unittest.cc", | |
| 197 "app_launch_unittest.cc", | 194 "app_launch_unittest.cc", |
| 198 "bridge/wm_shell_mus_test_api.h", | 195 "bridge/wm_shell_mus_test_api.h", |
| 199 "test/ash_test_impl_mus.cc", | 196 "test/ash_test_impl_mus.cc", |
| 200 "test/ash_test_impl_mus.h", | 197 "test/ash_test_impl_mus.h", |
| 201 "test/wm_test_base.cc", | 198 "test/wm_test_base.cc", |
| 202 "test/wm_test_base.h", | 199 "test/wm_test_base.h", |
| 203 "test/wm_test_helper.cc", | 200 "test/wm_test_helper.cc", |
| 204 "test/wm_test_helper.h", | 201 "test/wm_test_helper.h", |
| 205 "top_level_window_factory_unittest.cc", | 202 "top_level_window_factory_unittest.cc", |
| 206 "window_manager_unittest.cc", | 203 "window_manager_unittest.cc", |
| (...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 239 "//ui/views/mus", | 236 "//ui/views/mus", |
| 240 ] | 237 ] |
| 241 | 238 |
| 242 data_deps = [ | 239 data_deps = [ |
| 243 ":mus", | 240 ":mus", |
| 244 "//mash/quick_launch", | 241 "//mash/quick_launch", |
| 245 ] | 242 ] |
| 246 | 243 |
| 247 defines = [ "NOTIMPLEMENTED_POLICY=5" ] | 244 defines = [ "NOTIMPLEMENTED_POLICY=5" ] |
| 248 } | 245 } |
| OLD | NEW |