| 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 72 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 83 "//ash", | 83 "//ash", |
| 84 "//ash/public/cpp:ash_public_cpp", | 84 "//ash/public/cpp:ash_public_cpp", |
| 85 "//base", | 85 "//base", |
| 86 "//base:i18n", | 86 "//base:i18n", |
| 87 "//mash/public/interfaces", | 87 "//mash/public/interfaces", |
| 88 "//mojo/common:common_base", | 88 "//mojo/common:common_base", |
| 89 "//services/service_manager/public/cpp", | 89 "//services/service_manager/public/cpp", |
| 90 "//services/tracing/public/cpp", | 90 "//services/tracing/public/cpp", |
| 91 "//services/ui/common:mus_common", | 91 "//services/ui/common:mus_common", |
| 92 "//services/ui/public/cpp", | 92 "//services/ui/public/cpp", |
| 93 "//services/ui/public/cpp/input_devices", |
| 93 "//services/ui/public/interfaces", | 94 "//services/ui/public/interfaces", |
| 94 "//services/ui/public/interfaces/display", | 95 "//services/ui/public/interfaces/display", |
| 95 "//skia", | 96 "//skia", |
| 96 "//ui/aura", | 97 "//ui/aura", |
| 97 "//ui/events", | 98 "//ui/events", |
| 98 "//ui/gfx", | 99 "//ui/gfx", |
| 99 "//ui/gfx/geometry", | 100 "//ui/gfx/geometry", |
| 100 "//ui/gfx/geometry/mojo", | 101 "//ui/gfx/geometry/mojo", |
| 101 "//ui/resources", | 102 "//ui/resources", |
| 102 "//ui/strings", | 103 "//ui/strings", |
| (...skipping 102 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 205 "//ash/public/cpp:ash_public_cpp", | 206 "//ash/public/cpp:ash_public_cpp", |
| 206 "//ash/test:test_support_without_content", | 207 "//ash/test:test_support_without_content", |
| 207 "//base", | 208 "//base", |
| 208 "//base/test:test_config", | 209 "//base/test:test_config", |
| 209 "//base/test:test_support", | 210 "//base/test:test_support", |
| 210 "//mash/quick_launch/public/interfaces:constants", | 211 "//mash/quick_launch/public/interfaces:constants", |
| 211 "//mojo/public/cpp/system", | 212 "//mojo/public/cpp/system", |
| 212 "//services/service_manager/public/cpp:service_test_support", | 213 "//services/service_manager/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", |
| 216 "//services/ui/public/cpp/input_devices", |
| 215 "//services/ui/public/interfaces", | 217 "//services/ui/public/interfaces", |
| 216 "//skia", | 218 "//skia", |
| 217 "//testing/gtest", | 219 "//testing/gtest", |
| 218 "//ui/aura", | 220 "//ui/aura", |
| 219 "//ui/aura:test_support", | 221 "//ui/aura:test_support", |
| 220 "//ui/base", | 222 "//ui/base", |
| 221 "//ui/base:test_support", | 223 "//ui/base:test_support", |
| 222 "//ui/compositor:test_support", | 224 "//ui/compositor:test_support", |
| 223 "//ui/display", | 225 "//ui/display", |
| 224 "//ui/events", | 226 "//ui/events", |
| 225 "//ui/events:test_support", | 227 "//ui/events:test_support", |
| 226 "//ui/gfx:test_support", | 228 "//ui/gfx:test_support", |
| 227 "//ui/gfx/geometry", | 229 "//ui/gfx/geometry", |
| 228 "//ui/gfx/geometry/mojo", | 230 "//ui/gfx/geometry/mojo", |
| 229 "//ui/message_center", | 231 "//ui/message_center", |
| 230 "//ui/views:test_support", | 232 "//ui/views:test_support", |
| 231 "//ui/views/mus", | 233 "//ui/views/mus", |
| 232 ] | 234 ] |
| 233 | 235 |
| 234 data_deps = [ | 236 data_deps = [ |
| 235 ":mus", | 237 ":mus", |
| 236 "//mash/quick_launch", | 238 "//mash/quick_launch", |
| 237 ] | 239 ] |
| 238 | 240 |
| 239 defines = [ "NOTIMPLEMENTED_POLICY=5" ] | 241 defines = [ "NOTIMPLEMENTED_POLICY=5" ] |
| 240 } | 242 } |
| OLD | NEW |