| 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 proto_library("stability_report_proto") { | 7 proto_library("stability_report_proto") { |
| 8 sources = [ | 8 sources = [ |
| 9 "stability_report.proto", | 9 "stability_report.proto", |
| 10 ] | 10 ] |
| (...skipping 57 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 68 "//base", | 68 "//base", |
| 69 "//third_party/crashpad/crashpad/client", | 69 "//third_party/crashpad/crashpad/client", |
| 70 "//third_party/crashpad/crashpad/util", | 70 "//third_party/crashpad/crashpad/util", |
| 71 ] | 71 ] |
| 72 } | 72 } |
| 73 | 73 |
| 74 static_library("stability") { | 74 static_library("stability") { |
| 75 sources = [ | 75 sources = [ |
| 76 "features.cc", | 76 "features.cc", |
| 77 "features.h", | 77 "features.h", |
| 78 "stability_debugging_win.cc", | |
| 79 "stability_debugging_win.h", | |
| 80 ] | 78 ] |
| 81 deps = [ | 79 deps = [ |
| 82 "//base", | 80 "//base", |
| 83 ] | 81 ] |
| 84 } | 82 } |
| 85 | 83 |
| 86 source_set("unit_tests") { | 84 source_set("browser_watcher_tests") { |
| 87 testonly = true | 85 testonly = true |
| 88 sources = [ | 86 sources = [ |
| 89 "endsession_watcher_window_win_unittest.cc", | 87 "endsession_watcher_window_win_unittest.cc", |
| 90 "exit_code_watcher_win_unittest.cc", | 88 "exit_code_watcher_win_unittest.cc", |
| 91 "postmortem_minidump_writer_win_unittest.cc", | 89 "postmortem_minidump_writer_win_unittest.cc", |
| 92 "postmortem_report_collector_unittest.cc", | 90 "postmortem_report_collector_unittest.cc", |
| 93 "watcher_client_win_unittest.cc", | 91 "watcher_client_win_unittest.cc", |
| 94 "watcher_metrics_provider_win_unittest.cc", | 92 "watcher_metrics_provider_win_unittest.cc", |
| 95 "window_hang_monitor_win_unittest.cc", | 93 "window_hang_monitor_win_unittest.cc", |
| 96 ] | 94 ] |
| (...skipping 20 matching lines...) Expand all Loading... |
| 117 | 115 |
| 118 executable("dump_postmortem") { | 116 executable("dump_postmortem") { |
| 119 sources = [ | 117 sources = [ |
| 120 "dump_postmortem_minidump_main_win.cc", | 118 "dump_postmortem_minidump_main_win.cc", |
| 121 ] | 119 ] |
| 122 deps = [ | 120 deps = [ |
| 123 ":stability_report_proto", | 121 ":stability_report_proto", |
| 124 "//base", | 122 "//base", |
| 125 ] | 123 ] |
| 126 } | 124 } |
| OLD | NEW |