OLD | NEW |
1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 2014 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/features.gni") | 5 import("//build/config/features.gni") |
6 import("//build/config/ui.gni") | 6 import("//build/config/ui.gni") |
7 import("//mojo/public/mojo_application.gni") | 7 import("//mojo/public/mojo_application.gni") |
8 import("//mojo/public/mojo_application_manifest.gni") | 8 import("//mojo/public/mojo_application_manifest.gni") |
9 import("//testing/test.gni") | 9 import("//testing/test.gni") |
10 import("//tools/grit/repack.gni") | 10 import("//tools/grit/repack.gni") |
(...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
51 deps = [ | 51 deps = [ |
52 "//base", | 52 "//base", |
53 "//base:i18n", | 53 "//base:i18n", |
54 "//base/third_party/dynamic_annotations", | 54 "//base/third_party/dynamic_annotations", |
55 "//cc", | 55 "//cc", |
56 "//cc/surfaces", | 56 "//cc/surfaces", |
57 "//components/bitmap_uploader", | 57 "//components/bitmap_uploader", |
58 "//components/mus/gles2:lib", | 58 "//components/mus/gles2:lib", |
59 "//components/mus/public/cpp", | 59 "//components/mus/public/cpp", |
60 "//components/mus/public/interfaces", | 60 "//components/mus/public/interfaces", |
61 "//components/resource_provider/public/cpp", | |
62 "//components/resource_provider/public/interfaces", | |
63 "//mojo/converters/geometry", | 61 "//mojo/converters/geometry", |
64 "//mojo/converters/ime", | 62 "//mojo/converters/ime", |
65 "//mojo/converters/input_events", | 63 "//mojo/converters/input_events", |
66 "//mojo/converters/surfaces", | 64 "//mojo/converters/surfaces", |
67 "//mojo/platform_handle:for_component", | 65 "//mojo/platform_handle:for_component", |
68 "//mojo/public/c/system:for_component", | 66 "//mojo/public/c/system:for_component", |
69 "//mojo/public/cpp/bindings", | 67 "//mojo/public/cpp/bindings", |
| 68 "//services/catalog/public/cpp", |
70 "//services/shell/public/cpp", | 69 "//services/shell/public/cpp", |
71 "//services/shell/public/interfaces", | 70 "//services/shell/public/interfaces", |
72 "//skia", | 71 "//skia", |
73 "//third_party/icu", | 72 "//third_party/icu", |
74 "//ui/aura", | 73 "//ui/aura", |
75 "//ui/compositor", | 74 "//ui/compositor", |
76 "//ui/events", | 75 "//ui/events", |
77 "//ui/events:events_base", | 76 "//ui/events:events_base", |
78 "//ui/events/devices", | 77 "//ui/events/devices", |
79 "//ui/gfx", | 78 "//ui/gfx", |
(...skipping 153 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
233 } | 232 } |
234 | 233 |
235 group("for_component") { | 234 group("for_component") { |
236 public_deps = [ | 235 public_deps = [ |
237 ":mus", | 236 ":mus", |
238 ] | 237 ] |
239 deps = [ | 238 deps = [ |
240 "//mojo/gles2", | 239 "//mojo/gles2", |
241 ] | 240 ] |
242 } | 241 } |
OLD | NEW |