OLD | NEW |
1 # Copyright 2016 The Chromium Authors. All rights reserved. | 1 # Copyright 2016 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/mojo_application.gni") | 6 import("//mojo/public/mojo_application.gni") |
7 import("//mojo/public/tools/bindings/mojom.gni") | 7 import("//mojo/public/tools/bindings/mojom.gni") |
8 import("//tools/grit/repack.gni") | 8 import("//tools/grit/repack.gni") |
9 | 9 |
10 mojo_native_application("quick_launch") { | 10 mojo_native_application("quick_launch") { |
11 sources = [ | 11 sources = [ |
12 "quick_launch.cc", | 12 "quick_launch.cc", |
13 ] | 13 ] |
14 | 14 |
15 deps = [ | 15 deps = [ |
16 "//base", | 16 "//base", |
17 "//mojo/application/public/cpp", | |
18 "//mojo/application/public/cpp:sources", | |
19 "//mojo/application/public/interfaces", | |
20 "//mojo/public/cpp/bindings", | 17 "//mojo/public/cpp/bindings", |
21 "//mojo/services/tracing/public/cpp", | 18 "//mojo/services/tracing/public/cpp", |
| 19 "//mojo/shell/public/cpp", |
| 20 "//mojo/shell/public/cpp:sources", |
| 21 "//mojo/shell/public/interfaces", |
22 "//ui/views", | 22 "//ui/views", |
23 "//ui/views/mus:for_mojo_application", | 23 "//ui/views/mus:for_mojo_application", |
24 "//url", | 24 "//url", |
25 ] | 25 ] |
26 | 26 |
27 resources = [ "$root_out_dir/views_mus_resources.pak" ] | 27 resources = [ "$root_out_dir/views_mus_resources.pak" ] |
28 | 28 |
29 data_deps = [ | 29 data_deps = [ |
30 "//components/mus", | 30 "//components/mus", |
31 ] | 31 ] |
32 } | 32 } |
OLD | NEW |