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

Side by Side Diff: mash/BUILD.gn

Issue 2695803004: Make browser process a singleton service (Closed)
Patch Set: . Created 3 years, 10 months 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 | « content/public/common/service_names.mojom ('k') | mash/session/session.cc » ('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 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/nacl/config.gni") 5 import("//build/config/nacl/config.gni")
6 import("//services/catalog/public/tools/catalog.gni") 6 import("//services/catalog/public/tools/catalog.gni")
7 import("//services/service_manager/public/service_manifest.gni") 7 import("//services/service_manager/public/service_manifest.gni")
8 import("//testing/test.gni") 8 import("//testing/test.gni")
9 9
10 # Target that builders build. 10 # Target that builders build.
(...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after
51 51
52 # TODO(rockot): It seems like a layering violation to have these service 52 # TODO(rockot): It seems like a layering violation to have these service
53 # names referenced here, but it's the most convenient thing to do for now, 53 # names referenced here, but it's the most convenient thing to do for now,
54 # and this is only for developers. 54 # and this is only for developers.
55 # 55 #
56 # Note that there are no build-time dependencies on the actual Chrome 56 # Note that there are no build-time dependencies on the actual Chrome
57 # binary implied by mash:all or other targets here. This only ensures that 57 # binary implied by mash:all or other targets here. This only ensures that
58 # if you have such a binary built, the runner will be able to locate it. 58 # if you have such a binary built, the runner will be able to locate it.
59 "//chrome/app:chrome_content_browser_manifest", 59 "//chrome/app:chrome_content_browser_manifest",
60 "//chrome/app:chrome_content_gpu_manifest", 60 "//chrome/app:chrome_content_gpu_manifest",
61 "//chrome/app:chrome_content_packaged_services_manifest_for_mash",
61 "//chrome/app:chrome_content_plugin_manifest", 62 "//chrome/app:chrome_content_plugin_manifest",
62 "//chrome/app:chrome_content_renderer_manifest", 63 "//chrome/app:chrome_content_renderer_manifest",
63 "//chrome/app:chrome_content_utility_manifest", 64 "//chrome/app:chrome_content_utility_manifest",
64 ] 65 ]
65 66
66 executable_overrides = [ "content_browser:@EXE_DIR/chrome" ] 67 executable_overrides = [ "content_packaged_services:@EXE_DIR/chrome" ]
67 68
68 catalog_deps = [ "//mash/example:catalog" ] 69 catalog_deps = [ "//mash/example:catalog" ]
69 70
70 if (is_chromeos) { 71 if (is_chromeos) {
71 standalone_services += [ "//ash/mus:manifest" ] 72 standalone_services += [ "//ash/mus:manifest" ]
72 } 73 }
73 74
74 if (is_linux && !is_android) { 75 if (is_linux && !is_android) {
75 standalone_services += [ "//components/font_service:manifest" ] 76 standalone_services += [ "//components/font_service:manifest" ]
76 } 77 }
(...skipping 74 matching lines...) Expand 10 before | Expand all | Expand 10 after
151 testonly = true 152 testonly = true
152 sources = get_target_outputs(":mash_unittests_catalog") 153 sources = get_target_outputs(":mash_unittests_catalog")
153 outputs = [ 154 outputs = [
154 "${root_out_dir}/mash_unittests_catalog.json", 155 "${root_out_dir}/mash_unittests_catalog.json",
155 ] 156 ]
156 deps = [ 157 deps = [
157 ":mash_unittests_catalog", 158 ":mash_unittests_catalog",
158 ] 159 ]
159 } 160 }
160 } 161 }
OLDNEW
« no previous file with comments | « content/public/common/service_names.mojom ('k') | mash/session/session.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698