Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(67)

Side by Side Diff: chrome/app/mash/BUILD.gn

Issue 2573743003: Flatten mash overlay back into Chrome overlay (Closed)
Patch Set: Created 4 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | chrome/app/mash/chrome_mash_content_browser_manifest_overlay.json » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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("//services/service_manager/public/service_manifest.gni") 5 import("//services/service_manager/public/service_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
22 "//services/service_manager/public/cpp", 22 "//services/service_manager/public/cpp",
23 "//services/service_manager/public/cpp/standalone_service", 23 "//services/service_manager/public/cpp/standalone_service",
24 "//services/service_manager/public/interfaces", 24 "//services/service_manager/public/interfaces",
25 "//services/service_manager/runner:init", 25 "//services/service_manager/runner:init",
26 "//services/service_manager/runner/common", 26 "//services/service_manager/runner/common",
27 "//services/service_manager/runner/host:lib", 27 "//services/service_manager/runner/host:lib",
28 "//services/service_manager/standalone:lib", 28 "//services/service_manager/standalone:lib",
29 "//url", 29 "//url",
30 ] 30 ]
31 data_deps = [ 31 data_deps = [
32 ":browser_manifest",
33 ":mash_manifest", 32 ":mash_manifest",
34 "//chrome/app:service_manifests", 33 "//chrome/app:service_manifests",
35 ] 34 ]
36 35
37 if (is_linux && !is_android) { 36 if (is_linux && !is_android) {
38 deps += [ "//components/font_service:lib" ] 37 deps += [ "//components/font_service:lib" ]
39 } 38 }
40 } 39 }
41 40
42 service_manifest("mash_manifest") { 41 service_manifest("mash_manifest") {
(...skipping 23 matching lines...) Expand all
66 if (is_chromeos) { 65 if (is_chromeos) {
67 deps += [ "//ash/mus:manifest" ] 66 deps += [ "//ash/mus:manifest" ]
68 packaged_services += [ "ash" ] 67 packaged_services += [ "ash" ]
69 } 68 }
70 69
71 if (is_linux && !is_android) { 70 if (is_linux && !is_android) {
72 deps += [ "//components/font_service:manifest" ] 71 deps += [ "//components/font_service:manifest" ]
73 packaged_services += [ "font_service" ] 72 packaged_services += [ "font_service" ]
74 } 73 }
75 } 74 }
76
77 service_manifest("browser_manifest") {
78 name = "content_browser"
79 source = "${root_out_dir}/Packages/chrome_content_browser/manifest.json"
80 output_name = "chrome_mash_content_browser"
81 deps = [
82 "//chrome/app:chrome_content_browser_manifest",
83 ]
84 overlays = [ "chrome_mash_content_browser_manifest_overlay.json" ]
85 }
OLDNEW
« no previous file with comments | « no previous file | chrome/app/mash/chrome_mash_content_browser_manifest_overlay.json » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698