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

Side by Side Diff: third_party/crashpad/crashpad/util/util_test.gyp

Issue 2555353002: Update Crashpad to 32981a3ee9d7c2769fb27afa038fe2e194cfa329 (Closed)
Patch Set: fix readme Created 4 years 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,
(...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after
48 'mach/exception_behaviors_test.cc', 48 'mach/exception_behaviors_test.cc',
49 'mach/exception_ports_test.cc', 49 'mach/exception_ports_test.cc',
50 'mach/exception_types_test.cc', 50 'mach/exception_types_test.cc',
51 'mach/mach_extensions_test.cc', 51 'mach/mach_extensions_test.cc',
52 'mach/mach_message_server_test.cc', 52 'mach/mach_message_server_test.cc',
53 'mach/mach_message_test.cc', 53 'mach/mach_message_test.cc',
54 'mach/notify_server_test.cc', 54 'mach/notify_server_test.cc',
55 'mach/scoped_task_suspend_test.cc', 55 'mach/scoped_task_suspend_test.cc',
56 'mach/symbolic_constants_mach_test.cc', 56 'mach/symbolic_constants_mach_test.cc',
57 'mach/task_memory_test.cc', 57 'mach/task_memory_test.cc',
58 'misc/arraysize_unsafe_test.cc',
58 'misc/clock_test.cc', 59 'misc/clock_test.cc',
59 'misc/initialization_state_dcheck_test.cc', 60 'misc/initialization_state_dcheck_test.cc',
60 'misc/initialization_state_test.cc', 61 'misc/initialization_state_test.cc',
61 'misc/scoped_forbid_return_test.cc', 62 'misc/scoped_forbid_return_test.cc',
62 'misc/random_string_test.cc', 63 'misc/random_string_test.cc',
63 'misc/uuid_test.cc', 64 'misc/uuid_test.cc',
64 'net/http_body_test.cc', 65 'net/http_body_test.cc',
65 'net/http_body_test_util.cc', 66 'net/http_body_test_util.cc',
66 'net/http_body_test_util.h', 67 'net/http_body_test_util.h',
67 'net/http_multipart_builder_test.cc', 68 'net/http_multipart_builder_test.cc',
(...skipping 15 matching lines...) Expand all
83 'thread/thread_test.cc', 84 'thread/thread_test.cc',
84 'thread/worker_thread_test.cc', 85 'thread/worker_thread_test.cc',
85 'win/capture_context_test.cc', 86 'win/capture_context_test.cc',
86 'win/command_line_test.cc', 87 'win/command_line_test.cc',
87 'win/critical_section_with_debug_info_test.cc', 88 'win/critical_section_with_debug_info_test.cc',
88 'win/exception_handler_server_test.cc', 89 'win/exception_handler_server_test.cc',
89 'win/get_function_test.cc', 90 'win/get_function_test.cc',
90 'win/handle_test.cc', 91 'win/handle_test.cc',
91 'win/initial_client_data_test.cc', 92 'win/initial_client_data_test.cc',
92 'win/process_info_test.cc', 93 'win/process_info_test.cc',
94 'win/registration_protocol_win_test.cc',
93 'win/scoped_process_suspend_test.cc', 95 'win/scoped_process_suspend_test.cc',
94 'win/time_test.cc', 96 'win/time_test.cc',
95 ], 97 ],
96 'conditions': [ 98 'conditions': [
97 ['OS=="mac"', { 99 ['OS=="mac"', {
98 'link_settings': { 100 'link_settings': {
99 'libraries': [ 101 'libraries': [
100 '$(SDKROOT)/System/Library/Frameworks/Foundation.framework', 102 '$(SDKROOT)/System/Library/Frameworks/Foundation.framework',
101 ], 103 ],
102 }, 104 },
103 }], 105 }],
104 ['OS=="win"', { 106 ['OS=="win"', {
105 'dependencies': [ 107 'dependencies': [
106 'crashpad_util_test_process_info_test_child', 108 'crashpad_util_test_process_info_test_child',
107 ], 109 ],
108 'link_settings': { 110 'link_settings': {
109 'libraries': [ 111 'libraries': [
112 '-ladvapi32.lib',
110 '-limagehlp.lib', 113 '-limagehlp.lib',
111 '-lrpcrt4.lib', 114 '-lrpcrt4.lib',
112 ], 115 ],
113 }, 116 },
114 }], 117 }],
115 ], 118 ],
116 }, 119 },
117 ], 120 ],
118 'conditions': [ 121 'conditions': [
119 ['OS=="win"', { 122 ['OS=="win"', {
(...skipping 14 matching lines...) Expand all
134 ], 137 ],
135 'RandomizedBaseAddress': '1', # /DYNAMICBASE:NO. 138 'RandomizedBaseAddress': '1', # /DYNAMICBASE:NO.
136 'FixedBaseAddress': '2', # /FIXED. 139 'FixedBaseAddress': '2', # /FIXED.
137 }, 140 },
138 }, 141 },
139 }, 142 },
140 ] 143 ]
141 }], 144 }],
142 ], 145 ],
143 } 146 }
OLDNEW
« no previous file with comments | « third_party/crashpad/crashpad/util/util.gyp ('k') | third_party/crashpad/crashpad/util/win/command_line.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698