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

Side by Side Diff: handler/handler.gyp

Issue 986033002: Allow Crashpad to build in the Chromium tree (Closed) Base URL: https://chromium.googlesource.com/crashpad/crashpad@master
Patch Set: Rewrap Created 5 years, 9 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
OLDNEW
1 # Copyright 2014 The Crashpad Authors. All rights reserved. 1 # Copyright 2014 The Crashpad Authors. All rights reserved.
2 # 2 #
3 # Licensed under the Apache License, Version 2.0 (the "License"); 3 # Licensed under the Apache License, Version 2.0 (the "License");
4 # you may not use this file except in compliance with the License. 4 # you may not use this file except in compliance with the License.
5 # You may obtain a copy of the License at 5 # You may obtain a copy of the License at
6 # 6 #
7 # http://www.apache.org/licenses/LICENSE-2.0 7 # http://www.apache.org/licenses/LICENSE-2.0
8 # 8 #
9 # Unless required by applicable law or agreed to in writing, software 9 # Unless required by applicable law or agreed to in writing, software
10 # distributed under the License is distributed on an "AS IS" BASIS, 10 # distributed under the License is distributed on an "AS IS" BASIS,
11 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 11 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 # See the License for the specific language governing permissions and 12 # See the License for the specific language governing permissions and
13 # limitations under the License. 13 # limitations under the License.
14 14
15 { 15 {
16 'includes': [ 16 'includes': [
17 '../build/crashpad.gypi', 17 '../build/crashpad.gypi',
18 ], 18 ],
19 'conditions': [ 19 'conditions': [
20 ['OS=="mac"', { 20 ['OS=="mac"', {
21 'targets': [ 21 'targets': [
22 { 22 {
23 'target_name': 'crashpad_handler', 23 'target_name': 'crashpad_handler',
24 'type': 'executable', 24 'type': 'executable',
25 'dependencies': [ 25 'dependencies': [
26 '../client/client.gyp:crashpad_client', 26 '../client/client.gyp:crashpad_client',
27 '../compat/compat.gyp:crashpad_compat', 27 '../compat/compat.gyp:crashpad_compat',
28 '../minidump/minidump.gyp:crashpad_minidump', 28 '../minidump/minidump.gyp:crashpad_minidump',
29 '../snapshot/snapshot.gyp:crashpad_snapshot', 29 '../snapshot/snapshot.gyp:crashpad_snapshot',
30 '../third_party/mini_chromium/mini_chromium/base/base.gyp:base', 30 '../third_party/mini_chromium/mini_chromium.gyp:base',
31 '../tools/tools.gyp:crashpad_tool_support', 31 '../tools/tools.gyp:crashpad_tool_support',
32 '../util/util.gyp:crashpad_util', 32 '../util/util.gyp:crashpad_util',
33 ], 33 ],
34 'include_dirs': [ 34 'include_dirs': [
35 '..', 35 '..',
36 ], 36 ],
37 'sources': [ 37 'sources': [
38 'mac/crash_report_exception_handler.cc', 38 'mac/crash_report_exception_handler.cc',
39 'mac/crash_report_exception_handler.h', 39 'mac/crash_report_exception_handler.h',
40 'mac/crash_report_upload_thread.cc', 40 'mac/crash_report_upload_thread.cc',
41 'mac/crash_report_upload_thread.h', 41 'mac/crash_report_upload_thread.h',
42 'mac/exception_handler_server.cc', 42 'mac/exception_handler_server.cc',
43 'mac/exception_handler_server.h', 43 'mac/exception_handler_server.h',
44 'mac/main.cc', 44 'mac/main.cc',
45 ], 45 ],
46 }, 46 },
47 ], 47 ],
48 }, { 48 }, {
49 'targets': [], 49 'targets': [],
50 }], 50 }],
51 ], 51 ],
52 } 52 }
OLDNEW
« no previous file with comments | « client/client.gyp ('k') | minidump/minidump.gyp » ('j') | third_party/gmock/gmock.gyp » ('J')

Powered by Google App Engine
This is Rietveld 408576698