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