| OLD | NEW |
| 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 Loading... |
| 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 Loading... |
| 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 } |
| OLD | NEW |