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

Side by Side Diff: util/util.gyp

Issue 482483002: Add MachMultiprocess and its test (Closed) Base URL: https://chromium.googlesource.com/crashpad/crashpad@bootstrap
Patch Set: Further refinements 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
« no previous file with comments | « util/test/mac/mach_multiprocess_test.cc ('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 45 matching lines...) Expand 10 before | Expand all | Expand 10 after
56 'stdlib/objc.h', 56 'stdlib/objc.h',
57 'stdlib/strlcpy.cc', 57 'stdlib/strlcpy.cc',
58 'stdlib/strlcpy.h', 58 'stdlib/strlcpy.h',
59 ], 59 ],
60 }, 60 },
61 { 61 {
62 'target_name': 'util_test_lib', 62 'target_name': 'util_test_lib',
63 'type': 'static_library', 63 'type': 'static_library',
64 'dependencies': [ 64 'dependencies': [
65 '../compat/compat.gyp:compat', 65 '../compat/compat.gyp:compat',
66 '../third_party/gtest/gtest.gyp:gtest',
66 '../third_party/mini_chromium/mini_chromium/base/base.gyp:base', 67 '../third_party/mini_chromium/mini_chromium/base/base.gyp:base',
67 'util', 68 'util',
68 ], 69 ],
69 'include_dirs': [ 70 'include_dirs': [
70 '..', 71 '..',
71 ], 72 ],
73 'link_settings': {
74 'libraries': [
75 '$(SDKROOT)/usr/lib/libbsm.dylib',
76 ],
77 },
72 'sources': [ 78 'sources': [
73 'test/errors.cc', 79 'test/errors.cc',
74 'test/errors.h', 80 'test/errors.h',
75 'test/mac/mach_errors.cc', 81 'test/mac/mach_errors.cc',
76 'test/mac/mach_errors.h', 82 'test/mac/mach_errors.h',
83 'test/mac/mach_multiprocess.cc',
84 'test/mac/mach_multiprocess.h',
77 ], 85 ],
78 }, 86 },
79 { 87 {
80 'target_name': 'util_test', 88 'target_name': 'util_test',
81 'type': 'executable', 89 'type': 'executable',
82 'dependencies': [ 90 'dependencies': [
83 'util', 91 'util',
84 'util_test_lib', 92 'util_test_lib',
85 '../compat/compat.gyp:compat', 93 '../compat/compat.gyp:compat',
86 '../third_party/gtest/gtest.gyp:gtest', 94 '../third_party/gtest/gtest.gyp:gtest',
(...skipping 10 matching lines...) Expand all
97 'mac/service_management_test.mm', 105 'mac/service_management_test.mm',
98 'mach/bootstrap_test.cc', 106 'mach/bootstrap_test.cc',
99 'mach/task_memory_test.cc', 107 'mach/task_memory_test.cc',
100 'misc/initialization_state_dcheck_test.cc', 108 'misc/initialization_state_dcheck_test.cc',
101 'misc/initialization_state_test.cc', 109 'misc/initialization_state_test.cc',
102 'misc/uuid_test.cc', 110 'misc/uuid_test.cc',
103 'numeric/checked_range_test.cc', 111 'numeric/checked_range_test.cc',
104 'numeric/in_range_cast_test.cc', 112 'numeric/in_range_cast_test.cc',
105 'posix/process_util_test.cc', 113 'posix/process_util_test.cc',
106 'stdlib/strlcpy_test.cc', 114 'stdlib/strlcpy_test.cc',
115 'test/mac/mach_multiprocess_test.cc',
107 ], 116 ],
108 }, 117 },
109 ], 118 ],
110 } 119 }
OLDNEW
« no previous file with comments | « util/test/mac/mach_multiprocess_test.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698