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

Side by Side Diff: minidump/minidump.gyp

Issue 990553003: Set product_name on many targets to use a crashpad_ prefix (Closed) Base URL: https://chromium.googlesource.com/crashpad/crashpad@master
Patch Set: Use target_name instead of product_name 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
« no previous file with comments | « handler/handler.gyp ('k') | snapshot/snapshot.gyp » ('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': 'crashpad_minidump',
19 'type': 'static_library', 19 'type': 'static_library',
20 'dependencies': [ 20 'dependencies': [
21 '../compat/compat.gyp:compat', 21 '../compat/compat.gyp:crashpad_compat',
22 '../snapshot/snapshot.gyp:snapshot', 22 '../snapshot/snapshot.gyp:crashpad_snapshot',
23 '../third_party/mini_chromium/mini_chromium/base/base.gyp:base', 23 '../third_party/mini_chromium/mini_chromium/base/base.gyp:base',
24 '../util/util.gyp:util', 24 '../util/util.gyp:crashpad_util',
25 ], 25 ],
26 'export_dependent_settings': [ 26 'export_dependent_settings': [
27 '../compat/compat.gyp:compat', 27 '../compat/compat.gyp:crashpad_compat',
28 ], 28 ],
29 'include_dirs': [ 29 'include_dirs': [
30 '..', 30 '..',
31 ], 31 ],
32 'sources': [ 32 'sources': [
33 'minidump_context.h', 33 'minidump_context.h',
34 'minidump_context_writer.cc', 34 'minidump_context_writer.cc',
35 'minidump_context_writer.h', 35 'minidump_context_writer.h',
36 'minidump_crashpad_info_writer.cc', 36 'minidump_crashpad_info_writer.cc',
37 'minidump_crashpad_info_writer.h', 37 'minidump_crashpad_info_writer.h',
(...skipping 25 matching lines...) Expand all
63 'minidump_thread_id_map.h', 63 'minidump_thread_id_map.h',
64 'minidump_thread_writer.cc', 64 'minidump_thread_writer.cc',
65 'minidump_thread_writer.h', 65 'minidump_thread_writer.h',
66 'minidump_writable.cc', 66 'minidump_writable.cc',
67 'minidump_writable.h', 67 'minidump_writable.h',
68 'minidump_writer_util.cc', 68 'minidump_writer_util.cc',
69 'minidump_writer_util.h', 69 'minidump_writer_util.h',
70 ], 70 ],
71 }, 71 },
72 { 72 {
73 'target_name': 'minidump_test', 73 'target_name': 'crashpad_minidump_test',
74 'type': 'executable', 74 'type': 'executable',
75 'dependencies': [ 75 'dependencies': [
76 'minidump', 76 'crashpad_minidump',
77 '../snapshot/snapshot.gyp:snapshot_test_lib', 77 '../snapshot/snapshot.gyp:crashpad_snapshot_test_lib',
78 '../third_party/gtest/gtest.gyp:gtest', 78 '../third_party/gtest/gtest.gyp:gtest',
79 '../third_party/gtest/gtest.gyp:gtest_main', 79 '../third_party/gtest/gtest.gyp:gtest_main',
80 '../third_party/mini_chromium/mini_chromium/base/base.gyp:base', 80 '../third_party/mini_chromium/mini_chromium/base/base.gyp:base',
81 ], 81 ],
82 'include_dirs': [ 82 'include_dirs': [
83 '..', 83 '..',
84 ], 84 ],
85 'sources': [ 85 'sources': [
86 'minidump_context_writer_test.cc', 86 'minidump_context_writer_test.cc',
87 'minidump_crashpad_info_writer_test.cc', 87 'minidump_crashpad_info_writer_test.cc',
(...skipping 19 matching lines...) Expand all
107 'test/minidump_rva_list_test_util.cc', 107 'test/minidump_rva_list_test_util.cc',
108 'test/minidump_rva_list_test_util.h', 108 'test/minidump_rva_list_test_util.h',
109 'test/minidump_string_writer_test_util.cc', 109 'test/minidump_string_writer_test_util.cc',
110 'test/minidump_string_writer_test_util.h', 110 'test/minidump_string_writer_test_util.h',
111 'test/minidump_writable_test_util.cc', 111 'test/minidump_writable_test_util.cc',
112 'test/minidump_writable_test_util.h', 112 'test/minidump_writable_test_util.h',
113 ], 113 ],
114 }, 114 },
115 ], 115 ],
116 } 116 }
OLDNEW
« no previous file with comments | « handler/handler.gyp ('k') | snapshot/snapshot.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698