Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(385)

Side by Side Diff: build/secondary/third_party/crashpad/crashpad/handler/BUILD.gn

Issue 2277943002: Update Crashpad to b35ee1fca18956f3c27ba124d6dc456a723c7670 (Closed)
Patch Set: fix build.gn Created 4 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | third_party/crashpad/README.chromium » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 static_library("handler_lib") { 5 static_library("handler_lib") {
6 sources = [ 6 sources = [
7 "crash_report_upload_thread.cc", 7 "crash_report_upload_thread.cc",
8 "crash_report_upload_thread.h", 8 "crash_report_upload_thread.h",
9 "handler_main.cc", 9 "handler_main.cc",
10 "handler_main.h", 10 "handler_main.h",
(...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after
48 ] 48 ]
49 49
50 if (is_mac && is_component_build) { 50 if (is_mac && is_component_build) {
51 # The handler is in Chromium.app/Contents/Versions/X/Chromium Framework.fram ework/Helpers/ 51 # The handler is in Chromium.app/Contents/Versions/X/Chromium Framework.fram ework/Helpers/
52 # so set rpath up to the base. 52 # so set rpath up to the base.
53 ldflags = [ 53 ldflags = [
54 "-rpath", 54 "-rpath",
55 "@loader_path/../../../../../..", 55 "@loader_path/../../../../../..",
56 ] 56 ]
57 } 57 }
58
59 if (is_win) {
60 configs -= [ "//build/config/win:console" ]
Mark Mentovai 2016/08/25 18:10:28 I don’t know if an import is needed to be able to
scottmg 2016/08/25 18:14:10 I think as that config is in a .gn (not .gni) it's
61 configs += [ "//build/config/win:windowed" ]
62 }
58 } 63 }
OLDNEW
« no previous file with comments | « no previous file | third_party/crashpad/README.chromium » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698