| 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/shell/public/cpp/service.gni") | 7 import("//services/shell/public/cpp/service.gni") |
| 8 import("//services/shell/public/service_manifest.gni") | 8 import("//services/shell/public/service_manifest.gni") |
| 9 import("//tools/grit/repack.gni") | 9 import("//tools/grit/repack.gni") |
| 10 | 10 |
| (...skipping 190 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 201 ] | 201 ] |
| 202 | 202 |
| 203 deps = [ | 203 deps = [ |
| 204 ":lib", | 204 ":lib", |
| 205 ":resources", | 205 ":resources", |
| 206 "//ash", | 206 "//ash", |
| 207 "//ash:test_support_without_content", | 207 "//ash:test_support_without_content", |
| 208 "//ash/public/interfaces", | 208 "//ash/public/interfaces", |
| 209 "//base", | 209 "//base", |
| 210 "//base/test:test_config", | 210 "//base/test:test_config", |
| 211 "//base/test:test_support", |
| 211 "//mojo/public/cpp/system", | 212 "//mojo/public/cpp/system", |
| 212 "//services/shell/public/cpp:service_test_support", | 213 "//services/shell/public/cpp:service_test_support", |
| 213 "//services/ui/common:mus_common", | 214 "//services/ui/common:mus_common", |
| 214 "//services/ui/public/cpp", | 215 "//services/ui/public/cpp", |
| 215 "//services/ui/public/cpp/tests:test_support", | 216 "//services/ui/public/cpp/tests:test_support", |
| 216 "//services/ui/public/cpp/tests:unittest_support", | 217 "//services/ui/public/cpp/tests:unittest_support", |
| 217 "//services/ui/public/interfaces", | 218 "//services/ui/public/interfaces", |
| 218 "//skia", | 219 "//skia", |
| 219 "//testing/gtest", | 220 "//testing/gtest", |
| 220 "//ui/aura", | 221 "//ui/aura", |
| 221 "//ui/base", | 222 "//ui/base", |
| 222 "//ui/base:test_support", | 223 "//ui/base:test_support", |
| 223 "//ui/display", | 224 "//ui/display", |
| 224 "//ui/events", | 225 "//ui/events", |
| 225 "//ui/events:test_support", | 226 "//ui/events:test_support", |
| 226 "//ui/gfx:test_support", | 227 "//ui/gfx:test_support", |
| 227 "//ui/gfx/geometry", | 228 "//ui/gfx/geometry", |
| 228 "//ui/gfx/geometry/mojo", | 229 "//ui/gfx/geometry/mojo", |
| 229 "//ui/message_center", | 230 "//ui/message_center", |
| 230 "//ui/views/mus", | 231 "//ui/views/mus", |
| 231 ] | 232 ] |
| 232 | 233 |
| 233 data_deps = [ | 234 data_deps = [ |
| 234 ":mus", | 235 ":mus", |
| 235 "//mash/quick_launch", | 236 "//mash/quick_launch", |
| 236 ] | 237 ] |
| 237 | 238 |
| 238 defines = [ "NOTIMPLEMENTED_POLICY=5" ] | 239 defines = [ "NOTIMPLEMENTED_POLICY=5" ] |
| 239 } | 240 } |
| OLD | NEW |