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/mojo_application_manifest.gni") | 7 import("//mojo/public/mojo_application_manifest.gni") |
8 import("//mojo/public/tools/bindings/mojom.gni") | 8 import("//mojo/public/tools/bindings/mojom.gni") |
9 import("//tools/grit/repack.gni") | 9 import("//tools/grit/repack.gni") |
10 | 10 |
(...skipping 16 matching lines...) Expand all Loading... |
27 "//mojo/shell/public/cpp:sources", | 27 "//mojo/shell/public/cpp:sources", |
28 ] | 28 ] |
29 | 29 |
30 data_deps = [ | 30 data_deps = [ |
31 "//mash/browser_driver", | 31 "//mash/browser_driver", |
32 "//mash/quick_launch", | 32 "//mash/quick_launch", |
33 "//mash/shelf", | 33 "//mash/shelf", |
34 "//mash/wallpaper", | 34 "//mash/wallpaper", |
35 "//mash/wm", | 35 "//mash/wm", |
36 ] | 36 ] |
| 37 |
| 38 if (use_ash) { |
| 39 data_deps += [ "//ash/mus" ] |
| 40 } |
37 } | 41 } |
38 | 42 |
39 mojo_application_manifest("manifest") { | 43 mojo_application_manifest("manifest") { |
40 application_name = "mash_shell" | 44 application_name = "mash_shell" |
41 source = "manifest.json" | 45 source = "manifest.json" |
42 } | 46 } |
OLD | NEW |