| 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 70 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 81 "//ui/chromeos", | 81 "//ui/chromeos", |
| 82 "//ui/display/manager", | 82 "//ui/display/manager", |
| 83 "//ui/keyboard", | 83 "//ui/keyboard", |
| 84 "//ui/keyboard:mojom", | 84 "//ui/keyboard:mojom", |
| 85 "//ui/message_center", | 85 "//ui/message_center", |
| 86 ] | 86 ] |
| 87 | 87 |
| 88 public_deps = [ | 88 public_deps = [ |
| 89 "//ash", | 89 "//ash", |
| 90 "//ash/public/cpp:ash_public_cpp", | 90 "//ash/public/cpp:ash_public_cpp", |
| 91 "//ash/public/interfaces", | |
| 92 "//base", | 91 "//base", |
| 93 "//base:i18n", | 92 "//base:i18n", |
| 94 "//mash/public/interfaces", | 93 "//mash/public/interfaces", |
| 95 "//mojo/common:common_base", | 94 "//mojo/common:common_base", |
| 96 "//services/service_manager/public/cpp", | 95 "//services/service_manager/public/cpp", |
| 97 "//services/tracing/public/cpp", | 96 "//services/tracing/public/cpp", |
| 98 "//services/ui/common:mus_common", | 97 "//services/ui/common:mus_common", |
| 99 "//services/ui/public/cpp", | 98 "//services/ui/public/cpp", |
| 100 "//services/ui/public/interfaces", | 99 "//services/ui/public/interfaces", |
| 101 "//services/ui/public/interfaces/display", | 100 "//services/ui/public/interfaces/display", |
| (...skipping 99 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 201 "test/wm_test_helper.h", | 200 "test/wm_test_helper.h", |
| 202 "top_level_window_factory_unittest.cc", | 201 "top_level_window_factory_unittest.cc", |
| 203 "window_manager_unittest.cc", | 202 "window_manager_unittest.cc", |
| 204 ] | 203 ] |
| 205 | 204 |
| 206 deps = [ | 205 deps = [ |
| 207 ":lib", | 206 ":lib", |
| 208 ":resources", | 207 ":resources", |
| 209 "//ash", | 208 "//ash", |
| 210 "//ash/common/test:test_support", | 209 "//ash/common/test:test_support", |
| 211 "//ash/public/interfaces", | 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", |
| 221 "//services/ui/public/interfaces", | 220 "//services/ui/public/interfaces", |
| (...skipping 14 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 |