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 77 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
88 } | 88 } |
89 | 89 |
90 if (is_win) { | 90 if (is_win) { |
91 source_set("unit_tests") { | 91 source_set("unit_tests") { |
92 testonly = true | 92 testonly = true |
93 sources = [ | 93 sources = [ |
94 "endsession_watcher_window_win_unittest.cc", | 94 "endsession_watcher_window_win_unittest.cc", |
95 "exit_code_watcher_win_unittest.cc", | 95 "exit_code_watcher_win_unittest.cc", |
96 "postmortem_minidump_writer_win_unittest.cc", | 96 "postmortem_minidump_writer_win_unittest.cc", |
97 "postmortem_report_collector_unittest.cc", | 97 "postmortem_report_collector_unittest.cc", |
| 98 "stability_debugging_win_unittest.cc", |
98 "system_session_analyzer_win_unittest.cc", | 99 "system_session_analyzer_win_unittest.cc", |
99 "watcher_client_win_unittest.cc", | 100 "watcher_client_win_unittest.cc", |
100 "watcher_metrics_provider_win_unittest.cc", | 101 "watcher_metrics_provider_win_unittest.cc", |
101 "window_hang_monitor_win_unittest.cc", | 102 "window_hang_monitor_win_unittest.cc", |
102 ] | 103 ] |
103 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] | 104 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] |
104 deps = [ | 105 deps = [ |
105 ":browser_watcher", | 106 ":browser_watcher", |
106 ":browser_watcher_client", | 107 ":browser_watcher_client", |
107 ":postmortem_report_collector", | 108 ":postmortem_report_collector", |
| 109 ":stability", |
108 ":stability_data", | 110 ":stability_data", |
109 ":stability_report_proto", | 111 ":stability_report_proto", |
110 "//base", | 112 "//base", |
111 "//base/test:test_support", | 113 "//base/test:test_support", |
112 "//testing/gmock", | 114 "//testing/gmock", |
113 "//testing/gtest", | 115 "//testing/gtest", |
114 "//third_party/crashpad/crashpad/client", | 116 "//third_party/crashpad/crashpad/client", |
115 | 117 |
116 # TODO(manzagop): remove this lib once Crashpad writes the minidumps. | 118 # TODO(manzagop): remove this lib once Crashpad writes the minidumps. |
117 "//third_party/crashpad/crashpad/compat", | 119 "//third_party/crashpad/crashpad/compat", |
(...skipping 16 matching lines...) Expand all Loading... |
134 executable("fetch_system_session_events") { | 136 executable("fetch_system_session_events") { |
135 sources = [ | 137 sources = [ |
136 "fetch_system_session_events_main_win.cc", | 138 "fetch_system_session_events_main_win.cc", |
137 ] | 139 ] |
138 deps = [ | 140 deps = [ |
139 ":postmortem_report_collector", | 141 ":postmortem_report_collector", |
140 "//base", | 142 "//base", |
141 ] | 143 ] |
142 } | 144 } |
143 } | 145 } |
OLD | NEW |