| 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 } | 184 } |
| 185 | 185 |
| 186 source_set("unittests") { | 186 source_set("unittests") { |
| 187 testonly = true | 187 testonly = true |
| 188 | 188 |
| 189 sources = [ | 189 sources = [ |
| 190 "app_launch_unittest.cc", | 190 "app_launch_unittest.cc", |
| 191 "bridge/shell_port_mash_test_api.h", | 191 "bridge/shell_port_mash_test_api.h", |
| 192 "non_client_frame_controller_unittest.cc", | 192 "non_client_frame_controller_unittest.cc", |
| 193 "screen_mus_unittest.cc", | 193 "screen_mus_unittest.cc", |
| 194 "test/ash_test_impl_mus.cc", | |
| 195 "test/ash_test_impl_mus.h", | |
| 196 "test/wm_test_base.cc", | |
| 197 "test/wm_test_base.h", | |
| 198 "test/wm_test_helper.cc", | |
| 199 "test/wm_test_helper.h", | |
| 200 "top_level_window_factory_unittest.cc", | 194 "top_level_window_factory_unittest.cc", |
| 201 "window_manager_unittest.cc", | 195 "window_manager_unittest.cc", |
| 202 ] | 196 ] |
| 203 | 197 |
| 204 deps = [ | 198 deps = [ |
| 205 ":lib", | 199 ":lib", |
| 206 ":resources", | 200 ":resources", |
| 207 "//ash", | 201 "//ash", |
| 208 "//ash/public/cpp:ash_public_cpp", | 202 "//ash/public/cpp:ash_public_cpp", |
| 209 "//ash/test:test_support_without_content", | 203 "//ash/test:test_support_without_content", |
| (...skipping 25 matching lines...) Expand all Loading... |
| 235 "//ui/views/mus", | 229 "//ui/views/mus", |
| 236 ] | 230 ] |
| 237 | 231 |
| 238 data_deps = [ | 232 data_deps = [ |
| 239 ":mus", | 233 ":mus", |
| 240 "//mash/quick_launch", | 234 "//mash/quick_launch", |
| 241 ] | 235 ] |
| 242 | 236 |
| 243 defines = [ "NOTIMPLEMENTED_POLICY=5" ] | 237 defines = [ "NOTIMPLEMENTED_POLICY=5" ] |
| 244 } | 238 } |
| OLD | NEW |