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

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

Issue 2710663006: Update Crashpad to 4a2043ea65e2641ef1a921801c0aaa15ada02fc7 (Closed)
Patch Set: Update Crashpad to 4a2043ea65e2 Created 3 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
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 11 matching lines...) Expand all
22 'type': 'executable', 22 'type': 'executable',
23 'dependencies': [ 23 'dependencies': [
24 'util.gyp:crashpad_util', 24 'util.gyp:crashpad_util',
25 '../client/client.gyp:crashpad_client', 25 '../client/client.gyp:crashpad_client',
26 '../compat/compat.gyp:crashpad_compat', 26 '../compat/compat.gyp:crashpad_compat',
27 '../test/test.gyp:crashpad_test', 27 '../test/test.gyp:crashpad_test',
28 '../third_party/gtest/gmock.gyp:gmock', 28 '../third_party/gtest/gmock.gyp:gmock',
29 '../third_party/gtest/gmock.gyp:gmock_main', 29 '../third_party/gtest/gmock.gyp:gmock_main',
30 '../third_party/gtest/gtest.gyp:gtest', 30 '../third_party/gtest/gtest.gyp:gtest',
31 '../third_party/mini_chromium/mini_chromium.gyp:base', 31 '../third_party/mini_chromium/mini_chromium.gyp:base',
32 '../third_party/zlib/zlib.gyp:zlib',
32 ], 33 ],
33 'include_dirs': [ 34 'include_dirs': [
34 '..', 35 '..',
35 ], 36 ],
36 'sources': [ 37 'sources': [
37 'file/file_io_test.cc', 38 'file/file_io_test.cc',
38 'file/string_file_test.cc', 39 'file/string_file_test.cc',
39 'mac/launchd_test.mm', 40 'mac/launchd_test.mm',
40 'mac/mac_util_test.mm', 41 'mac/mac_util_test.mm',
41 'mac/service_management_test.mm', 42 'mac/service_management_test.mm',
(...skipping 13 matching lines...) Expand all
55 'mach/scoped_task_suspend_test.cc', 56 'mach/scoped_task_suspend_test.cc',
56 'mach/symbolic_constants_mach_test.cc', 57 'mach/symbolic_constants_mach_test.cc',
57 'mach/task_memory_test.cc', 58 'mach/task_memory_test.cc',
58 'misc/arraysize_unsafe_test.cc', 59 'misc/arraysize_unsafe_test.cc',
59 'misc/clock_test.cc', 60 'misc/clock_test.cc',
60 'misc/initialization_state_dcheck_test.cc', 61 'misc/initialization_state_dcheck_test.cc',
61 'misc/initialization_state_test.cc', 62 'misc/initialization_state_test.cc',
62 'misc/scoped_forbid_return_test.cc', 63 'misc/scoped_forbid_return_test.cc',
63 'misc/random_string_test.cc', 64 'misc/random_string_test.cc',
64 'misc/uuid_test.cc', 65 'misc/uuid_test.cc',
66 'net/http_body_gzip_test.cc',
65 'net/http_body_test.cc', 67 'net/http_body_test.cc',
66 'net/http_body_test_util.cc', 68 'net/http_body_test_util.cc',
67 'net/http_body_test_util.h', 69 'net/http_body_test_util.h',
68 'net/http_multipart_builder_test.cc', 70 'net/http_multipart_builder_test.cc',
69 'net/http_transport_test.cc', 71 'net/http_transport_test.cc',
70 'numeric/checked_address_range_test.cc', 72 'numeric/checked_address_range_test.cc',
71 'numeric/checked_range_test.cc', 73 'numeric/checked_range_test.cc',
72 'numeric/in_range_cast_test.cc', 74 'numeric/in_range_cast_test.cc',
73 'numeric/int128_test.cc', 75 'numeric/int128_test.cc',
74 'posix/process_info_test.cc', 76 'posix/process_info_test.cc',
(...skipping 11 matching lines...) Expand all
86 'win/capture_context_test.cc', 88 'win/capture_context_test.cc',
87 'win/command_line_test.cc', 89 'win/command_line_test.cc',
88 'win/critical_section_with_debug_info_test.cc', 90 'win/critical_section_with_debug_info_test.cc',
89 'win/exception_handler_server_test.cc', 91 'win/exception_handler_server_test.cc',
90 'win/get_function_test.cc', 92 'win/get_function_test.cc',
91 'win/handle_test.cc', 93 'win/handle_test.cc',
92 'win/initial_client_data_test.cc', 94 'win/initial_client_data_test.cc',
93 'win/process_info_test.cc', 95 'win/process_info_test.cc',
94 'win/registration_protocol_win_test.cc', 96 'win/registration_protocol_win_test.cc',
95 'win/scoped_process_suspend_test.cc', 97 'win/scoped_process_suspend_test.cc',
98 'win/session_end_watcher_test.cc',
96 'win/time_test.cc', 99 'win/time_test.cc',
97 ], 100 ],
98 'conditions': [ 101 'conditions': [
99 ['OS=="mac"', { 102 ['OS=="mac"', {
100 'link_settings': { 103 'link_settings': {
101 'libraries': [ 104 'libraries': [
102 '$(SDKROOT)/System/Library/Frameworks/Foundation.framework', 105 '$(SDKROOT)/System/Library/Frameworks/Foundation.framework',
103 ], 106 ],
104 }, 107 },
105 }], 108 }],
106 ['OS=="win"', { 109 ['OS=="win"', {
107 'dependencies': [ 110 'dependencies': [
108 'crashpad_util_test_process_info_test_child', 111 'crashpad_util_test_process_info_test_child',
109 ], 112 ],
110 'link_settings': { 113 'link_settings': {
111 'libraries': [ 114 'libraries': [
112 '-ladvapi32.lib', 115 '-ladvapi32.lib',
113 '-limagehlp.lib', 116 '-limagehlp.lib',
114 '-lrpcrt4.lib', 117 '-lrpcrt4.lib',
118 '-luser32.lib',
115 ], 119 ],
116 }, 120 },
117 }], 121 }],
118 ], 122 ],
119 }, 123 },
120 ], 124 ],
121 'conditions': [ 125 'conditions': [
122 ['OS=="win"', { 126 ['OS=="win"', {
123 'targets': [ 127 'targets': [
124 { 128 {
(...skipping 12 matching lines...) Expand all
137 ], 141 ],
138 'RandomizedBaseAddress': '1', # /DYNAMICBASE:NO. 142 'RandomizedBaseAddress': '1', # /DYNAMICBASE:NO.
139 'FixedBaseAddress': '2', # /FIXED. 143 'FixedBaseAddress': '2', # /FIXED.
140 }, 144 },
141 }, 145 },
142 }, 146 },
143 ] 147 ]
144 }], 148 }],
145 ], 149 ],
146 } 150 }
OLDNEW
« no previous file with comments | « third_party/crashpad/crashpad/util/util.gyp ('k') | third_party/crashpad/crashpad/util/win/scoped_handle.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698