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

Side by Side Diff: components/browser_watcher/BUILD.gn

Issue 2691033002: Collect field trial information from the stability file (Closed)
Patch Set: Address rkaplow's comments 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 | « no previous file | components/browser_watcher/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 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("//third_party/protobuf/proto_library.gni") 5 import("//third_party/protobuf/proto_library.gni")
6 6
7 if (is_win) { 7 if (is_win) {
8 proto_library("stability_report_proto") { 8 proto_library("stability_report_proto") {
9 sources = [ 9 sources = [
10 "stability_report.proto", 10 "stability_report.proto",
(...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after
62 static_library("postmortem_report_collector") { 62 static_library("postmortem_report_collector") {
63 sources = [ 63 sources = [
64 "postmortem_report_collector.cc", 64 "postmortem_report_collector.cc",
65 "postmortem_report_collector.h", 65 "postmortem_report_collector.h",
66 ] 66 ]
67 deps = [ 67 deps = [
68 ":postmortem_minidump_writer", 68 ":postmortem_minidump_writer",
69 ":stability_data", 69 ":stability_data",
70 ":stability_report_proto", 70 ":stability_report_proto",
71 "//base", 71 "//base",
72 "//components/variations",
72 "//third_party/crashpad/crashpad/client", 73 "//third_party/crashpad/crashpad/client",
73 "//third_party/crashpad/crashpad/util", 74 "//third_party/crashpad/crashpad/util",
74 ] 75 ]
75 } 76 }
76 } 77 }
77 78
78 static_library("stability") { 79 static_library("stability") {
79 sources = [ 80 sources = [
80 "features.cc", 81 "features.cc",
81 "features.h", 82 "features.h",
(...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after
131 executable("dump_postmortem") { 132 executable("dump_postmortem") {
132 sources = [ 133 sources = [
133 "dump_postmortem_minidump_main_win.cc", 134 "dump_postmortem_minidump_main_win.cc",
134 ] 135 ]
135 deps = [ 136 deps = [
136 ":stability_report_proto", 137 ":stability_report_proto",
137 "//base", 138 "//base",
138 ] 139 ]
139 } 140 }
140 } 141 }
OLDNEW
« no previous file with comments | « no previous file | components/browser_watcher/DEPS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698