Chromium Code Reviews| 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("//chrome/process_version_rc_template.gni") | 5 import("//chrome/process_version_rc_template.gni") |
| 6 import("//testing/test.gni") | 6 import("//testing/test.gni") |
| 7 | 7 |
| 8 source_set("client") { | 8 source_set("client") { |
| 9 sources = [ | 9 sources = [ |
| 10 "chrome_watcher_main_api.cc", | 10 "chrome_watcher_main_api.cc", |
| (...skipping 58 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 69 "//base:base_static", | 69 "//base:base_static", |
| 70 "//build/config/sanitizers:deps", | 70 "//build/config/sanitizers:deps", |
| 71 "//chrome/common:metrics_constants_util_win", | 71 "//chrome/common:metrics_constants_util_win", |
| 72 "//chrome/installer/util:with_no_strings", | 72 "//chrome/installer/util:with_no_strings", |
| 73 "//components/browser_watcher", | 73 "//components/browser_watcher", |
| 74 ] | 74 ] |
| 75 ldflags = [ "/DEF:" + rebase_path("chrome_watcher.def", root_build_dir) ] | 75 ldflags = [ "/DEF:" + rebase_path("chrome_watcher.def", root_build_dir) ] |
| 76 configs -= [ "//build/config/win:console" ] | 76 configs -= [ "//build/config/win:console" ] |
| 77 configs += [ "//build/config/win:windowed" ] | 77 configs += [ "//build/config/win:windowed" ] |
| 78 } | 78 } |
| 79 | |
| 80 static_library("chrome_postmortem_report_collector") { | |
|
grt (UTC plus 2)
2016/09/27 20:43:09
i'm wondering if this is the right thing. some que
manzagop (departed)
2016/09/28 16:29:17
Went with using a callback. Theoretically, the col
| |
| 81 sources = [ | |
| 82 "chrome_postmortem_report_collector.cc", | |
| 83 "chrome_postmortem_report_collector.h", | |
| 84 ] | |
| 85 deps = [ | |
| 86 "//base", | |
| 87 "//chrome/install_static:install_static_util", | |
| 88 "//components/browser_watcher:postmortem_report_collector", | |
| 89 "//components/browser_watcher:stability_report_proto", | |
|
grt (UTC plus 2)
2016/09/27 20:43:09
this is an unfortunate side effect of making cprc
manzagop (departed)
2016/09/28 16:29:17
Acknowledged.
| |
| 90 "//third_party/crashpad/crashpad/client", | |
| 91 "//third_party/crashpad/crashpad/util", | |
| 92 ] | |
| 93 } | |
| OLD | NEW |