| 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 175 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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 "app_launch_unittest.cc", | 194 "app_launch_unittest.cc", |
| 195 "bridge/wm_shell_mus_test_api.h", | 195 "bridge/wm_shell_mus_test_api.h", |
| 196 "screen_mus_unittest.cc", |
| 196 "test/ash_test_impl_mus.cc", | 197 "test/ash_test_impl_mus.cc", |
| 197 "test/ash_test_impl_mus.h", | 198 "test/ash_test_impl_mus.h", |
| 198 "test/wm_test_base.cc", | 199 "test/wm_test_base.cc", |
| 199 "test/wm_test_base.h", | 200 "test/wm_test_base.h", |
| 200 "test/wm_test_helper.cc", | 201 "test/wm_test_helper.cc", |
| 201 "test/wm_test_helper.h", | 202 "test/wm_test_helper.h", |
| 202 "top_level_window_factory_unittest.cc", | 203 "top_level_window_factory_unittest.cc", |
| 203 "window_manager_unittest.cc", | 204 "window_manager_unittest.cc", |
| 204 ] | 205 ] |
| 205 | 206 |
| (...skipping 30 matching lines...) Expand all Loading... |
| 236 "//ui/views/mus", | 237 "//ui/views/mus", |
| 237 ] | 238 ] |
| 238 | 239 |
| 239 data_deps = [ | 240 data_deps = [ |
| 240 ":mus", | 241 ":mus", |
| 241 "//mash/quick_launch", | 242 "//mash/quick_launch", |
| 242 ] | 243 ] |
| 243 | 244 |
| 244 defines = [ "NOTIMPLEMENTED_POLICY=5" ] | 245 defines = [ "NOTIMPLEMENTED_POLICY=5" ] |
| 245 } | 246 } |
| OLD | NEW |