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

Side by Side Diff: minidump/minidump.gyp

Issue 683143003: minidump: Add InitializeFromSnapshot() for MinidumpModuleCrashpadInfoListWriter and downstream (Closed) Base URL: https://chromium.googlesource.com/crashpad/crashpad@master
Patch Set: Address review feedback Created 6 years, 1 month 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 | minidump/minidump_module_crashpad_info_writer.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,
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 'targets': [ 16 'targets': [
17 { 17 {
18 'target_name': 'minidump', 18 'target_name': 'minidump',
19 'type': 'static_library', 19 'type': 'static_library',
20 'dependencies': [ 20 'dependencies': [
21 '../compat/compat.gyp:compat', 21 '../compat/compat.gyp:compat',
22 '../snapshot/snapshot.gyp:snapshot',
22 '../third_party/mini_chromium/mini_chromium/base/base.gyp:base', 23 '../third_party/mini_chromium/mini_chromium/base/base.gyp:base',
23 '../util/util.gyp:util', 24 '../util/util.gyp:util',
24 ], 25 ],
25 'export_dependent_settings': [ 26 'export_dependent_settings': [
26 '../compat/compat.gyp:compat', 27 '../compat/compat.gyp:compat',
27 ], 28 ],
28 'include_dirs': [ 29 'include_dirs': [
29 '..', 30 '..',
30 ], 31 ],
31 'sources': [ 32 'sources': [
(...skipping 30 matching lines...) Expand all
62 'minidump_writable.h', 63 'minidump_writable.h',
63 'minidump_writer_util.cc', 64 'minidump_writer_util.cc',
64 'minidump_writer_util.h', 65 'minidump_writer_util.h',
65 ], 66 ],
66 }, 67 },
67 { 68 {
68 'target_name': 'minidump_test', 69 'target_name': 'minidump_test',
69 'type': 'executable', 70 'type': 'executable',
70 'dependencies': [ 71 'dependencies': [
71 'minidump', 72 'minidump',
73 '../snapshot/snapshot.gyp:snapshot_test_lib',
72 '../third_party/gtest/gtest.gyp:gtest', 74 '../third_party/gtest/gtest.gyp:gtest',
73 '../third_party/gtest/gtest.gyp:gtest_main', 75 '../third_party/gtest/gtest.gyp:gtest_main',
74 '../third_party/mini_chromium/mini_chromium/base/base.gyp:base', 76 '../third_party/mini_chromium/mini_chromium/base/base.gyp:base',
75 ], 77 ],
76 'include_dirs': [ 78 'include_dirs': [
77 '..', 79 '..',
78 ], 80 ],
79 'sources': [ 81 'sources': [
80 'minidump_context_writer_test.cc', 82 'minidump_context_writer_test.cc',
81 'minidump_crashpad_info_writer_test.cc', 83 'minidump_crashpad_info_writer_test.cc',
(...skipping 15 matching lines...) Expand all
97 'test/minidump_memory_writer_test_util.cc', 99 'test/minidump_memory_writer_test_util.cc',
98 'test/minidump_memory_writer_test_util.h', 100 'test/minidump_memory_writer_test_util.h',
99 'test/minidump_string_writer_test_util.cc', 101 'test/minidump_string_writer_test_util.cc',
100 'test/minidump_string_writer_test_util.h', 102 'test/minidump_string_writer_test_util.h',
101 'test/minidump_writable_test_util.cc', 103 'test/minidump_writable_test_util.cc',
102 'test/minidump_writable_test_util.h', 104 'test/minidump_writable_test_util.h',
103 ], 105 ],
104 }, 106 },
105 ], 107 ],
106 } 108 }
OLDNEW
« no previous file with comments | « no previous file | minidump/minidump_module_crashpad_info_writer.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698