OLD | NEW |
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 67 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
78 '$(SDKROOT)/usr/lib/libbsm.dylib', | 78 '$(SDKROOT)/usr/lib/libbsm.dylib', |
79 ], | 79 ], |
80 }, | 80 }, |
81 'sources': [ | 81 'sources': [ |
82 'test/errors.cc', | 82 'test/errors.cc', |
83 'test/errors.h', | 83 'test/errors.h', |
84 'test/mac/mach_errors.cc', | 84 'test/mac/mach_errors.cc', |
85 'test/mac/mach_errors.h', | 85 'test/mac/mach_errors.h', |
86 'test/mac/mach_multiprocess.cc', | 86 'test/mac/mach_multiprocess.cc', |
87 'test/mac/mach_multiprocess.h', | 87 'test/mac/mach_multiprocess.h', |
| 88 'test/multiprocess.cc', |
| 89 'test/multiprocess.h', |
88 ], | 90 ], |
89 }, | 91 }, |
90 { | 92 { |
91 'target_name': 'util_test', | 93 'target_name': 'util_test', |
92 'type': 'executable', | 94 'type': 'executable', |
93 'dependencies': [ | 95 'dependencies': [ |
94 'util', | 96 'util', |
95 'util_test_lib', | 97 'util_test_lib', |
96 '../compat/compat.gyp:compat', | 98 '../compat/compat.gyp:compat', |
97 '../third_party/gtest/gtest.gyp:gtest', | 99 '../third_party/gtest/gtest.gyp:gtest', |
(...skipping 12 matching lines...) Expand all Loading... |
110 'mach/bootstrap_test.cc', | 112 'mach/bootstrap_test.cc', |
111 'mach/task_memory_test.cc', | 113 'mach/task_memory_test.cc', |
112 'misc/initialization_state_dcheck_test.cc', | 114 'misc/initialization_state_dcheck_test.cc', |
113 'misc/initialization_state_test.cc', | 115 'misc/initialization_state_test.cc', |
114 'misc/uuid_test.cc', | 116 'misc/uuid_test.cc', |
115 'numeric/checked_range_test.cc', | 117 'numeric/checked_range_test.cc', |
116 'numeric/in_range_cast_test.cc', | 118 'numeric/in_range_cast_test.cc', |
117 'posix/process_util_test.cc', | 119 'posix/process_util_test.cc', |
118 'stdlib/strlcpy_test.cc', | 120 'stdlib/strlcpy_test.cc', |
119 'test/mac/mach_multiprocess_test.cc', | 121 'test/mac/mach_multiprocess_test.cc', |
| 122 'test/multiprocess_test.cc', |
120 ], | 123 ], |
121 }, | 124 }, |
122 ], | 125 ], |
123 } | 126 } |
OLD | NEW |