| 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 89 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 100 } | 100 } |
| 101 | 101 |
| 102 static_library("stability_client") { | 102 static_library("stability_client") { |
| 103 sources = [ | 103 sources = [ |
| 104 "features.cc", | 104 "features.cc", |
| 105 "features.h", | 105 "features.h", |
| 106 "stability_data_names.cc", | 106 "stability_data_names.cc", |
| 107 "stability_data_names.h", | 107 "stability_data_names.h", |
| 108 "stability_debugging.cc", | 108 "stability_debugging.cc", |
| 109 "stability_debugging.h", | 109 "stability_debugging.h", |
| 110 "stability_metrics.cc", |
| 111 "stability_metrics.h", |
| 110 "stability_paths.cc", | 112 "stability_paths.cc", |
| 111 "stability_paths.h", | 113 "stability_paths.h", |
| 112 ] | 114 ] |
| 113 deps = [ | 115 deps = [ |
| 114 "//base", | 116 "//base", |
| 115 "//third_party/crashpad/crashpad/util", | 117 "//third_party/crashpad/crashpad/util", |
| 116 ] | 118 ] |
| 117 } | 119 } |
| 118 | 120 |
| 119 source_set("unit_tests") { | 121 source_set("unit_tests") { |
| (...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 163 executable("fetch_system_session_events") { | 165 executable("fetch_system_session_events") { |
| 164 sources = [ | 166 sources = [ |
| 165 "fetch_system_session_events_main_win.cc", | 167 "fetch_system_session_events_main_win.cc", |
| 166 ] | 168 ] |
| 167 deps = [ | 169 deps = [ |
| 168 ":postmortem_stability", | 170 ":postmortem_stability", |
| 169 "//base", | 171 "//base", |
| 170 ] | 172 ] |
| 171 } | 173 } |
| 172 } | 174 } |
| OLD | NEW |