| 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 10 matching lines...) Expand all Loading... |
| 21 ":manifest", | 21 ":manifest", |
| 22 "//base", | 22 "//base", |
| 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 data_deps = [ | 30 data_deps = [ |
| 31 "//ash/mus/sysui", |
| 31 "//mash/browser_driver", | 32 "//mash/browser_driver", |
| 32 "//mash/quick_launch", | 33 "//mash/quick_launch", |
| 33 "//mash/shelf", | 34 "//mash/shelf", |
| 34 "//mash/wallpaper", | 35 "//mash/wallpaper", |
| 35 "//mash/wm", | 36 "//mash/wm", |
| 36 ] | 37 ] |
| 37 } | 38 } |
| 38 | 39 |
| 39 mojo_application_manifest("manifest") { | 40 mojo_application_manifest("manifest") { |
| 40 application_name = "mash_shell" | 41 application_name = "mash_shell" |
| 41 source = "manifest.json" | 42 source = "manifest.json" |
| 42 } | 43 } |
| OLD | NEW |