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

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

Issue 1961473003: [Mac/GN] Set up the component build. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Comment and rebase Created 4 years, 7 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 | « base/BUILD.gn ('k') | build/toolchain/mac/BUILD.gn » ('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 source_set("handler_lib") { 5 source_set("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 28 matching lines...) Expand all
39 ] 39 ]
40 40
41 include_dirs = [ ".." ] 41 include_dirs = [ ".." ]
42 42
43 deps = [ 43 deps = [
44 ":handler_lib", 44 ":handler_lib",
45 "../compat", 45 "../compat",
46 "//base", 46 "//base",
47 "//build/win:default_exe_manifest", 47 "//build/win:default_exe_manifest",
48 ] 48 ]
49
50 if (is_mac && is_component_build) {
51 # The handler is in Chromium.app/Contents/Versions/X/Chromium Framework.fram ework/Helpers/
52 # so set rpath up to the base.
53 ldflags = [
54 "-rpath",
55 "@loader_path/../../../../../..",
56 ]
57 }
49 } 58 }
OLDNEW
« no previous file with comments | « base/BUILD.gn ('k') | build/toolchain/mac/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698