| 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 108 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 119 } | 119 } |
| 120 | 120 |
| 121 source_set("unit_tests") { | 121 source_set("unit_tests") { |
| 122 testonly = true | 122 testonly = true |
| 123 sources = [ | 123 sources = [ |
| 124 "endsession_watcher_window_win_unittest.cc", | 124 "endsession_watcher_window_win_unittest.cc", |
| 125 "exit_code_watcher_win_unittest.cc", | 125 "exit_code_watcher_win_unittest.cc", |
| 126 "postmortem_minidump_writer_win_unittest.cc", | 126 "postmortem_minidump_writer_win_unittest.cc", |
| 127 "postmortem_report_collector_unittest.cc", | 127 "postmortem_report_collector_unittest.cc", |
| 128 "stability_debugging_win_unittest.cc", | 128 "stability_debugging_win_unittest.cc", |
| 129 "stability_paths_unittest.cc", |
| 129 "system_session_analyzer_win_unittest.cc", | 130 "system_session_analyzer_win_unittest.cc", |
| 130 "watcher_client_win_unittest.cc", | 131 "watcher_client_win_unittest.cc", |
| 131 "watcher_metrics_provider_win_unittest.cc", | 132 "watcher_metrics_provider_win_unittest.cc", |
| 132 "window_hang_monitor_win_unittest.cc", | 133 "window_hang_monitor_win_unittest.cc", |
| 133 ] | 134 ] |
| 134 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] | 135 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] |
| 135 deps = [ | 136 deps = [ |
| 136 ":browser_watcher", | 137 ":browser_watcher", |
| 137 ":browser_watcher_client", | 138 ":browser_watcher_client", |
| 138 ":postmortem_stability", | 139 ":postmortem_stability", |
| (...skipping 26 matching lines...) Expand all Loading... |
| 165 executable("fetch_system_session_events") { | 166 executable("fetch_system_session_events") { |
| 166 sources = [ | 167 sources = [ |
| 167 "fetch_system_session_events_main_win.cc", | 168 "fetch_system_session_events_main_win.cc", |
| 168 ] | 169 ] |
| 169 deps = [ | 170 deps = [ |
| 170 ":postmortem_stability", | 171 ":postmortem_stability", |
| 171 "//base", | 172 "//base", |
| 172 ] | 173 ] |
| 173 } | 174 } |
| 174 } | 175 } |
| OLD | NEW |