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

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

Issue 2718123003: mash: Store chrome --mash crash key metadata in shared memory
Patch Set: rebase Created 3 years, 9 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
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 20 matching lines...) Expand all
31 "//services/service_manager/public/interfaces", 31 "//services/service_manager/public/interfaces",
32 "//services/service_manager/runner:init", 32 "//services/service_manager/runner:init",
33 "//services/service_manager/runner/common", 33 "//services/service_manager/runner/common",
34 "//services/service_manager/runner/host:lib", 34 "//services/service_manager/runner/host:lib",
35 "//services/service_manager/standalone", 35 "//services/service_manager/standalone",
36 "//services/ui/public/interfaces:constants", 36 "//services/ui/public/interfaces:constants",
37 "//url", 37 "//url",
38 ] 38 ]
39 39
40 if (is_chromeos) { 40 if (is_chromeos) {
41 deps += [ "//ash/resources" ] 41 sources += [
42 "mash_crash_keys.cc",
43 "mash_crash_keys.h",
44 ]
45 deps += [
46 "//ash/resources",
47 "//breakpad:client",
48 "//components/crash/core/common",
49 ]
42 } 50 }
43 51
44 if (is_linux && !is_android) { 52 if (is_linux && !is_android) {
45 deps += [ "//components/font_service:lib" ] 53 deps += [ "//components/font_service:lib" ]
46 } 54 }
47 } 55 }
48 56
49 service_manifest("mash_manifest") { 57 service_manifest("mash_manifest") {
50 name = "chrome_mash" 58 name = "chrome_mash"
51 source = "chrome_mash_manifest.json" 59 source = "chrome_mash_manifest.json"
(...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after
88 catalog = ":catalog" 96 catalog = ":catalog"
89 generated_function_name = "CreateChromeMashCatalog" 97 generated_function_name = "CreateChromeMashCatalog"
90 } 98 }
91 99
92 source_set("mash_service_overrides") { 100 source_set("mash_service_overrides") {
93 testonly = true 101 testonly = true
94 data = [ 102 data = [
95 "mash_service_overrides.json", 103 "mash_service_overrides.json",
96 ] 104 ]
97 } 105 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698