| 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 189 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 200 "test/wm_test_helper.cc", | 200 "test/wm_test_helper.cc", |
| 201 "test/wm_test_helper.h", | 201 "test/wm_test_helper.h", |
| 202 "top_level_window_factory_unittest.cc", | 202 "top_level_window_factory_unittest.cc", |
| 203 "window_manager_unittest.cc", | 203 "window_manager_unittest.cc", |
| 204 ] | 204 ] |
| 205 | 205 |
| 206 deps = [ | 206 deps = [ |
| 207 ":lib", | 207 ":lib", |
| 208 ":resources", | 208 ":resources", |
| 209 "//ash", | 209 "//ash", |
| 210 "//ash/common/test:test_support", | |
| 211 "//ash/public/cpp:ash_public_cpp", | 210 "//ash/public/cpp:ash_public_cpp", |
| 212 "//ash/test:test_support_without_content", | 211 "//ash/test:test_support_without_content", |
| 213 "//base", | 212 "//base", |
| 214 "//base/test:test_config", | 213 "//base/test:test_config", |
| 215 "//base/test:test_support", | 214 "//base/test:test_support", |
| 216 "//mash/quick_launch/public/interfaces:constants", | 215 "//mash/quick_launch/public/interfaces:constants", |
| 217 "//mojo/public/cpp/system", | 216 "//mojo/public/cpp/system", |
| 218 "//services/service_manager/public/cpp:service_test_support", | 217 "//services/service_manager/public/cpp:service_test_support", |
| 219 "//services/ui/common:mus_common", | 218 "//services/ui/common:mus_common", |
| 220 "//services/ui/public/cpp", | 219 "//services/ui/public/cpp", |
| (...skipping 15 matching lines...) Expand all Loading... |
| 236 "//ui/views/mus", | 235 "//ui/views/mus", |
| 237 ] | 236 ] |
| 238 | 237 |
| 239 data_deps = [ | 238 data_deps = [ |
| 240 ":mus", | 239 ":mus", |
| 241 "//mash/quick_launch", | 240 "//mash/quick_launch", |
| 242 ] | 241 ] |
| 243 | 242 |
| 244 defines = [ "NOTIMPLEMENTED_POLICY=5" ] | 243 defines = [ "NOTIMPLEMENTED_POLICY=5" ] |
| 245 } | 244 } |
| OLD | NEW |