| 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("//mojo/public/mojo_application_manifest.gni") | 5 import("//mojo/public/mojo_application_manifest.gni") |
| 6 | 6 |
| 7 source_set("mash") { | 7 source_set("mash") { |
| 8 sources = [ | 8 sources = [ |
| 9 "mash_runner.cc", | 9 "mash_runner.cc", |
| 10 "mash_runner.h", | 10 "mash_runner.h", |
| 11 ] | 11 ] |
| 12 deps = [ | 12 deps = [ |
| 13 ":chrome_manifest", | 13 ":chrome_manifest", |
| 14 ":manifest", | 14 ":manifest", |
| 15 "//ash/mus:lib", | 15 "//ash/mus:lib", |
| 16 "//ash/resources", | 16 "//ash/resources", |
| 17 "//base:i18n", | 17 "//base:i18n", |
| 18 "//components/mus:lib", | 18 "//components/mus:lib", |
| 19 "//components/resource_provider:lib", | 19 "//components/resource_provider:lib", |
| 20 "//content/public/common", | 20 "//content/public/common", |
| 21 "//mash/quick_launch:lib", | 21 "//mash/quick_launch:lib", |
| 22 "//mash/shell:lib", | 22 "//mash/shell:lib", |
| 23 "//mash/wm:lib", | 23 "//mash/wm:lib", |
| 24 "//mojo/common:mojo_scheme_register", | |
| 25 "//mojo/shell", | 24 "//mojo/shell", |
| 26 "//mojo/shell/background:lib", | 25 "//mojo/shell/background:lib", |
| 27 "//mojo/shell/public/cpp", | 26 "//mojo/shell/public/cpp", |
| 28 "//mojo/shell/public/interfaces", | 27 "//mojo/shell/public/interfaces", |
| 29 "//mojo/shell/runner/common", | 28 "//mojo/shell/runner/common", |
| 30 "//mojo/shell/runner/host:child_process_base", | 29 "//mojo/shell/runner/host:child_process_base", |
| 31 "//mojo/shell/runner/host:lib", | 30 "//mojo/shell/runner/host:lib", |
| 32 "//url", | 31 "//url", |
| 33 ] | 32 ] |
| 34 | 33 |
| (...skipping 27 matching lines...) Expand all Loading... |
| 62 deps += [ "//components/font_service:manifest" ] | 61 deps += [ "//components/font_service:manifest" ] |
| 63 packaged_applications += [ "font_service" ] | 62 packaged_applications += [ "font_service" ] |
| 64 } | 63 } |
| 65 } | 64 } |
| 66 | 65 |
| 67 mojo_application_manifest("chrome_manifest") { | 66 mojo_application_manifest("chrome_manifest") { |
| 68 type = "exe" | 67 type = "exe" |
| 69 application_name = "chrome" | 68 application_name = "chrome" |
| 70 source = "chrome_manifest.json" | 69 source = "chrome_manifest.json" |
| 71 } | 70 } |
| OLD | NEW |