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

Side by Side Diff: util/util.gyp

Issue 491963002: Add most of ProcessReader and its test (Closed) Base URL: https://chromium.googlesource.com/crashpad/crashpad@master
Patch Set: Tolerate extra threads; test each thread’s suspend count Created 6 years, 4 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
« util/mac/process_reader.h ('K') | « util/stdlib/pointer_container.h ('k') | no next file » | 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 20 matching lines...) Expand all
31 'file/file_writer.cc', 31 'file/file_writer.cc',
32 'file/file_writer.h', 32 'file/file_writer.h',
33 'file/string_file_writer.cc', 33 'file/string_file_writer.cc',
34 'file/string_file_writer.h', 34 'file/string_file_writer.h',
35 'mac/launchd.h', 35 'mac/launchd.h',
36 'mac/launchd.mm', 36 'mac/launchd.mm',
37 'mac/mac_util.cc', 37 'mac/mac_util.cc',
38 'mac/mac_util.h', 38 'mac/mac_util.h',
39 'mac/service_management.cc', 39 'mac/service_management.cc',
40 'mac/service_management.h', 40 'mac/service_management.h',
41 'mac/process_reader.cc',
42 'mac/process_reader.h',
41 'mach/bootstrap.cc', 43 'mach/bootstrap.cc',
42 'mach/bootstrap.h', 44 'mach/bootstrap.h',
43 'mach/task_memory.cc', 45 'mach/task_memory.cc',
44 'mach/task_memory.h', 46 'mach/task_memory.h',
45 'misc/initialization_state.h', 47 'misc/initialization_state.h',
46 'misc/initialization_state_dcheck.cc', 48 'misc/initialization_state_dcheck.cc',
47 'misc/initialization_state_dcheck.h', 49 'misc/initialization_state_dcheck.h',
48 'misc/uuid.cc', 50 'misc/uuid.cc',
49 'misc/uuid.h', 51 'misc/uuid.h',
50 'numeric/checked_range.h', 52 'numeric/checked_range.h',
51 'numeric/in_range_cast.h', 53 'numeric/in_range_cast.h',
52 'numeric/safe_assignment.h', 54 'numeric/safe_assignment.h',
53 'posix/process_util.h', 55 'posix/process_util.h',
54 'posix/process_util_mac.cc', 56 'posix/process_util_mac.cc',
55 'stdlib/cxx.h', 57 'stdlib/cxx.h',
56 'stdlib/objc.h', 58 'stdlib/objc.h',
59 'stdlib/pointer_container.h',
57 'stdlib/strlcpy.cc', 60 'stdlib/strlcpy.cc',
58 'stdlib/strlcpy.h', 61 'stdlib/strlcpy.h',
59 ], 62 ],
60 }, 63 },
61 { 64 {
62 'target_name': 'util_test_lib', 65 'target_name': 'util_test_lib',
63 'type': 'static_library', 66 'type': 'static_library',
64 'dependencies': [ 67 'dependencies': [
65 '../compat/compat.gyp:compat', 68 '../compat/compat.gyp:compat',
66 '../third_party/gtest/gtest.gyp:gtest', 69 '../third_party/gtest/gtest.gyp:gtest',
(...skipping 28 matching lines...) Expand all
95 '../third_party/gtest/gtest.gyp:gtest_main', 98 '../third_party/gtest/gtest.gyp:gtest_main',
96 '../third_party/mini_chromium/mini_chromium/base/base.gyp:base', 99 '../third_party/mini_chromium/mini_chromium/base/base.gyp:base',
97 ], 100 ],
98 'include_dirs': [ 101 'include_dirs': [
99 '..', 102 '..',
100 ], 103 ],
101 'sources': [ 104 'sources': [
102 'file/string_file_writer_test.cc', 105 'file/string_file_writer_test.cc',
103 'mac/launchd_test.mm', 106 'mac/launchd_test.mm',
104 'mac/mac_util_test.mm', 107 'mac/mac_util_test.mm',
108 'mac/process_reader_test.cc',
105 'mac/service_management_test.mm', 109 'mac/service_management_test.mm',
106 'mach/bootstrap_test.cc', 110 'mach/bootstrap_test.cc',
107 'mach/task_memory_test.cc', 111 'mach/task_memory_test.cc',
108 'misc/initialization_state_dcheck_test.cc', 112 'misc/initialization_state_dcheck_test.cc',
109 'misc/initialization_state_test.cc', 113 'misc/initialization_state_test.cc',
110 'misc/uuid_test.cc', 114 'misc/uuid_test.cc',
111 'numeric/checked_range_test.cc', 115 'numeric/checked_range_test.cc',
112 'numeric/in_range_cast_test.cc', 116 'numeric/in_range_cast_test.cc',
113 'posix/process_util_test.cc', 117 'posix/process_util_test.cc',
114 'stdlib/strlcpy_test.cc', 118 'stdlib/strlcpy_test.cc',
115 'test/mac/mach_multiprocess_test.cc', 119 'test/mac/mach_multiprocess_test.cc',
116 ], 120 ],
117 }, 121 },
118 ], 122 ],
119 } 123 }
OLDNEW
« util/mac/process_reader.h ('K') | « util/stdlib/pointer_container.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698