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

Side by Side Diff: client/client.gyp

Issue 842513002: Create CrashReportDatabase interface, a test, and a Mac implementation. (Closed) Base URL: https://chromium.googlesource.com/crashpad/crashpad@master
Patch Set: Address comments Created 5 years, 10 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 | client/crash_report_database.h » ('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 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,
(...skipping 13 matching lines...) Expand all
24 'include_dirs': [ 24 'include_dirs': [
25 '..', 25 '..',
26 ], 26 ],
27 'sources': [ 27 'sources': [
28 'capture_context_mac.h', 28 'capture_context_mac.h',
29 'capture_context_mac.S', 29 'capture_context_mac.S',
30 'crashpad_client.h', 30 'crashpad_client.h',
31 'crashpad_client_mac.cc', 31 'crashpad_client_mac.cc',
32 'crashpad_info.cc', 32 'crashpad_info.cc',
33 'crashpad_info.h', 33 'crashpad_info.h',
34 'crash_report_database_mac.mm',
35 'crash_report_database.cc',
36 'crash_report_database.h',
34 'simple_string_dictionary.cc', 37 'simple_string_dictionary.cc',
35 'simple_string_dictionary.h', 38 'simple_string_dictionary.h',
36 'simulate_crash.h', 39 'simulate_crash.h',
37 'simulate_crash_mac.cc', 40 'simulate_crash_mac.cc',
38 'simulate_crash_mac.h', 41 'simulate_crash_mac.h',
39 ], 42 ],
40 }, 43 },
41 { 44 {
42 'target_name': 'client_test', 45 'target_name': 'client_test',
43 'type': 'executable', 46 'type': 'executable',
44 'dependencies': [ 47 'dependencies': [
45 'client', 48 'client',
46 '../third_party/gtest/gtest.gyp:gtest', 49 '../third_party/gtest/gtest.gyp:gtest',
47 '../third_party/gtest/gtest.gyp:gtest_main', 50 '../third_party/gtest/gtest.gyp:gtest_main',
48 '../third_party/mini_chromium/mini_chromium/base/base.gyp:base', 51 '../third_party/mini_chromium/mini_chromium/base/base.gyp:base',
49 '../util/util.gyp:util', 52 '../util/util.gyp:util',
50 '../util/util.gyp:util_test_lib', 53 '../util/util.gyp:util_test_lib',
51 ], 54 ],
52 'include_dirs': [ 55 'include_dirs': [
53 '..', 56 '..',
54 ], 57 ],
55 'sources': [ 58 'sources': [
56 'capture_context_mac_test.cc', 59 'capture_context_mac_test.cc',
60 'crash_report_database_test.cc',
57 'simple_string_dictionary_test.cc', 61 'simple_string_dictionary_test.cc',
58 'simulate_crash_mac_test.cc', 62 'simulate_crash_mac_test.cc',
59 ], 63 ],
60 }, 64 },
61 ], 65 ],
62 } 66 }
OLDNEW
« no previous file with comments | « no previous file | client/crash_report_database.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698