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 16 matching lines...) Expand all Loading... |
27 ], | 27 ], |
28 'sources': [ | 28 'sources': [ |
29 'file/fd_io.cc', | 29 'file/fd_io.cc', |
30 'file/fd_io.h', | 30 'file/fd_io.h', |
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/service_management.cc', |
| 38 'mac/service_management.h', |
37 'mach/task_memory.cc', | 39 'mach/task_memory.cc', |
38 'mach/task_memory.h', | 40 'mach/task_memory.h', |
39 'misc/initialization_state.h', | 41 'misc/initialization_state.h', |
40 'misc/initialization_state_dcheck.cc', | 42 'misc/initialization_state_dcheck.cc', |
41 'misc/initialization_state_dcheck.h', | 43 'misc/initialization_state_dcheck.h', |
42 'misc/uuid.cc', | 44 'misc/uuid.cc', |
43 'misc/uuid.h', | 45 'misc/uuid.h', |
44 'posix/process_util.h', | 46 'posix/process_util.h', |
45 'posix/process_util_mac.cc', | 47 'posix/process_util_mac.cc', |
46 'stdlib/cxx.h', | 48 'stdlib/cxx.h', |
(...skipping 30 matching lines...) Expand all Loading... |
77 '../third_party/gtest/gtest.gyp:gtest', | 79 '../third_party/gtest/gtest.gyp:gtest', |
78 '../third_party/gtest/gtest.gyp:gtest_main', | 80 '../third_party/gtest/gtest.gyp:gtest_main', |
79 '../third_party/mini_chromium/mini_chromium/base/base.gyp:base', | 81 '../third_party/mini_chromium/mini_chromium/base/base.gyp:base', |
80 ], | 82 ], |
81 'include_dirs': [ | 83 'include_dirs': [ |
82 '..', | 84 '..', |
83 ], | 85 ], |
84 'sources': [ | 86 'sources': [ |
85 'file/string_file_writer_test.cc', | 87 'file/string_file_writer_test.cc', |
86 'mac/launchd_test.mm', | 88 'mac/launchd_test.mm', |
| 89 'mac/service_management_test.mm', |
87 'mach/task_memory_test.cc', | 90 'mach/task_memory_test.cc', |
88 'misc/initialization_state_dcheck_test.cc', | 91 'misc/initialization_state_dcheck_test.cc', |
89 'misc/initialization_state_test.cc', | 92 'misc/initialization_state_test.cc', |
90 'misc/uuid_test.cc', | 93 'misc/uuid_test.cc', |
91 'posix/process_util_test.cc', | 94 'posix/process_util_test.cc', |
92 'stdlib/strlcpy_test.cc', | 95 'stdlib/strlcpy_test.cc', |
93 ], | 96 ], |
94 }, | 97 }, |
95 ], | 98 ], |
96 } | 99 } |
OLD | NEW |