| 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", |
| (...skipping 11 matching lines...) Expand all Loading... |
| 22 "//mojo/shell", | 22 "//mojo/shell", |
| 23 "//mojo/shell/background:lib", | 23 "//mojo/shell/background:lib", |
| 24 "//mojo/shell/public/cpp", | 24 "//mojo/shell/public/cpp", |
| 25 "//mojo/shell/public/interfaces", | 25 "//mojo/shell/public/interfaces", |
| 26 "//mojo/shell/runner/common", | 26 "//mojo/shell/runner/common", |
| 27 "//mojo/shell/runner/host:child_process_base", | 27 "//mojo/shell/runner/host:child_process_base", |
| 28 "//mojo/shell/runner/host:lib", | 28 "//mojo/shell/runner/host:lib", |
| 29 "//url", | 29 "//url", |
| 30 ] | 30 ] |
| 31 data_deps = [ | 31 data_deps = [ |
| 32 ":chrome_manifest", | |
| 33 ":manifest", | 32 ":manifest", |
| 34 ] | 33 ] |
| 35 | 34 |
| 36 if (is_linux && !is_android) { | 35 if (is_linux && !is_android) { |
| 37 deps += [ "//components/font_service:lib" ] | 36 deps += [ "//components/font_service:lib" ] |
| 38 } | 37 } |
| 39 } | 38 } |
| 40 | 39 |
| 41 mojo_application_manifest("manifest") { | 40 mojo_application_manifest("manifest") { |
| 42 type = "exe" | 41 type = "exe" |
| (...skipping 14 matching lines...) Expand all Loading... |
| 57 "mus", | 56 "mus", |
| 58 "quick_launch", | 57 "quick_launch", |
| 59 "resource_provider", | 58 "resource_provider", |
| 60 ] | 59 ] |
| 61 | 60 |
| 62 if (is_linux && !is_android) { | 61 if (is_linux && !is_android) { |
| 63 deps += [ "//components/font_service:manifest" ] | 62 deps += [ "//components/font_service:manifest" ] |
| 64 packaged_applications += [ "font_service" ] | 63 packaged_applications += [ "font_service" ] |
| 65 } | 64 } |
| 66 } | 65 } |
| 67 | |
| 68 mojo_application_manifest("chrome_manifest") { | |
| 69 type = "exe" | |
| 70 application_name = "chrome" | |
| 71 source = "chrome_manifest.json" | |
| 72 } | |
| OLD | NEW |