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

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

Issue 2854633002: Make tracing an embedded service (Closed)
Patch Set: Created 3 years, 7 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 | « no previous file | chrome/app/mash/DEPS » ('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("//build/config/nacl/config.gni") 5 import("//build/config/nacl/config.gni")
6 import("//chrome/common/features.gni") 6 import("//chrome/common/features.gni")
7 import("//services/catalog/public/tools/catalog.gni") 7 import("//services/catalog/public/tools/catalog.gni")
8 import("//services/service_manager/public/service_manifest.gni") 8 import("//services/service_manager/public/service_manifest.gni")
9 9
10 assert(enable_package_mash_services) 10 assert(enable_package_mash_services)
(...skipping 22 matching lines...) Expand all
33 "//services/catalog/public/interfaces", 33 "//services/catalog/public/interfaces",
34 "//services/service_manager", 34 "//services/service_manager",
35 "//services/service_manager/background:lib", 35 "//services/service_manager/background:lib",
36 "//services/service_manager/public/cpp", 36 "//services/service_manager/public/cpp",
37 "//services/service_manager/public/cpp/standalone_service", 37 "//services/service_manager/public/cpp/standalone_service",
38 "//services/service_manager/public/interfaces", 38 "//services/service_manager/public/interfaces",
39 "//services/service_manager/runner:init", 39 "//services/service_manager/runner:init",
40 "//services/service_manager/runner/common", 40 "//services/service_manager/runner/common",
41 "//services/service_manager/runner/host:lib", 41 "//services/service_manager/runner/host:lib",
42 "//services/service_manager/standalone", 42 "//services/service_manager/standalone",
43 "//services/tracing:lib",
44 "//services/tracing/public/interfaces:constants",
43 "//services/ui:lib", 45 "//services/ui:lib",
44 "//services/ui/ime/test_ime_driver:lib", 46 "//services/ui/ime/test_ime_driver:lib",
45 "//services/ui/public/interfaces:constants", 47 "//services/ui/public/interfaces:constants",
46 "//url", 48 "//url",
47 ] 49 ]
48 50
49 if (is_chromeos) { 51 if (is_chromeos) {
50 deps += [ 52 deps += [
51 ":chrome_mus_catalog", 53 ":chrome_mus_catalog",
52 "//ash/autoclick/mus:lib", 54 "//ash/autoclick/mus:lib",
(...skipping 13 matching lines...) Expand all
66 } 68 }
67 69
68 catalog("catalog") { 70 catalog("catalog") {
69 embedded_services = [ 71 embedded_services = [
70 "//ash/autoclick/mus:manifest", 72 "//ash/autoclick/mus:manifest",
71 "//ash/touch_hud/mus:manifest", 73 "//ash/touch_hud/mus:manifest",
72 "//mash/catalog_viewer:manifest", 74 "//mash/catalog_viewer:manifest",
73 "//mash/quick_launch:manifest", 75 "//mash/quick_launch:manifest",
74 "//mash/session:manifest", 76 "//mash/session:manifest",
75 "//mash/task_viewer:manifest", 77 "//mash/task_viewer:manifest",
78 "//services/tracing:manifest",
76 "//services/ui:manifest", 79 "//services/ui:manifest",
77 "//services/ui/ime/test_ime_driver:manifest", 80 "//services/ui/ime/test_ime_driver:manifest",
78 ] 81 ]
79 catalog_deps = [ "//chrome/app:catalog_for_mash" ] 82 catalog_deps = [ "//chrome/app:catalog_for_mash" ]
80 standalone_services = [ 83 standalone_services = [
81 "//mash/example/views_examples:manifest", 84 "//mash/example/views_examples:manifest",
82 "//mash/simple_wm:manifest", 85 "//mash/simple_wm:manifest",
83 ] 86 ]
84 87
85 if (is_chromeos) { 88 if (is_chromeos) {
(...skipping 19 matching lines...) Expand all
105 # TODO(sky): verify if we need this. 108 # TODO(sky): verify if we need this.
106 "//services/ui/ime/test_ime_driver:manifest", 109 "//services/ui/ime/test_ime_driver:manifest",
107 ] 110 ]
108 } 111 }
109 112
110 catalog_cpp_source("chrome_mus_catalog") { 113 catalog_cpp_source("chrome_mus_catalog") {
111 catalog = ":catalog_mus" 114 catalog = ":catalog_mus"
112 generated_function_name = "CreateChromeMusCatalog" 115 generated_function_name = "CreateChromeMusCatalog"
113 } 116 }
114 } 117 }
OLDNEW
« no previous file with comments | « no previous file | chrome/app/mash/DEPS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698