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/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("shell") { | 10 mojo_native_application("shell") { |
11 output_name = "mash_shell" | 11 output_name = "mash_shell" |
12 manifest = [ "manifest.json" ] | 12 manifest = [ "manifest.json" ] |
13 | 13 |
14 sources = [ | 14 sources = [ |
15 "main.cc", | 15 "main.cc", |
16 "shell_application_delegate.cc", | 16 "shell_application_delegate.cc", |
17 "shell_application_delegate.h", | 17 "shell_application_delegate.h", |
18 ] | 18 ] |
19 | 19 |
20 deps = [ | 20 deps = [ |
21 "//base", | 21 "//base", |
22 "//mash/screenlock/public/interfaces", | 22 "//mash/screenlock/public/interfaces", |
23 "//mash/shell/public/interfaces", | 23 "//mash/shell/public/interfaces", |
24 "//mojo/common", | 24 "//mojo/common", |
25 "//mojo/public/cpp/bindings", | 25 "//mojo/public/cpp/bindings", |
26 "//mojo/shell/public/cpp", | 26 "//mojo/shell/public/cpp", |
27 "//mojo/shell/public/cpp:sources", | 27 "//mojo/shell/public/cpp:sources", |
28 ] | 28 ] |
29 | 29 |
| 30 testonly = true |
30 data_deps = [ | 31 data_deps = [ |
| 32 "//ash/mus/sysui", |
31 "//mash/browser_driver", | 33 "//mash/browser_driver", |
32 "//mash/quick_launch", | 34 "//mash/quick_launch", |
33 "//mash/shelf", | 35 "//mash/shelf", |
34 "//mash/wallpaper", | 36 "//mash/wallpaper", |
35 "//mash/wm", | 37 "//mash/wm", |
36 ] | 38 ] |
37 } | 39 } |
OLD | NEW |