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 12 matching lines...) Expand all Loading... |
23 ], | 23 ], |
24 'include_dirs': [ | 24 'include_dirs': [ |
25 '..', | 25 '..', |
26 '<(INTERMEDIATE_DIR)', | 26 '<(INTERMEDIATE_DIR)', |
27 ], | 27 ], |
28 'sources': [ | 28 'sources': [ |
29 'file/file_io.cc', | 29 'file/file_io.cc', |
30 'file/file_io.h', | 30 'file/file_io.h', |
31 'file/file_io_posix.cc', | 31 'file/file_io_posix.cc', |
32 'file/file_io_win.cc', | 32 'file/file_io_win.cc', |
| 33 'file/file_reader.cc', |
| 34 'file/file_reader.h', |
| 35 'file/file_seeker.h', |
33 'file/file_writer.cc', | 36 'file/file_writer.cc', |
34 'file/file_writer.h', | 37 'file/file_writer.h', |
35 'file/string_file_writer.cc', | 38 'file/string_file.cc', |
36 'file/string_file_writer.h', | 39 'file/string_file.h', |
37 'mac/checked_mach_address_range.cc', | 40 'mac/checked_mach_address_range.cc', |
38 'mac/checked_mach_address_range.h', | 41 'mac/checked_mach_address_range.h', |
39 'mac/launchd.h', | 42 'mac/launchd.h', |
40 'mac/launchd.mm', | 43 'mac/launchd.mm', |
41 'mac/mac_util.cc', | 44 'mac/mac_util.cc', |
42 'mac/mac_util.h', | 45 'mac/mac_util.h', |
43 'mac/service_management.cc', | 46 'mac/service_management.cc', |
44 'mac/service_management.h', | 47 'mac/service_management.h', |
45 'mac/xattr.cc', | 48 'mac/xattr.cc', |
46 'mac/xattr.h', | 49 'mac/xattr.h', |
(...skipping 204 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
251 '../compat/compat.gyp:compat', | 254 '../compat/compat.gyp:compat', |
252 '../third_party/gmock/gmock.gyp:gmock', | 255 '../third_party/gmock/gmock.gyp:gmock', |
253 '../third_party/gtest/gtest.gyp:gtest', | 256 '../third_party/gtest/gtest.gyp:gtest', |
254 '../third_party/gtest/gtest.gyp:gtest_main', | 257 '../third_party/gtest/gtest.gyp:gtest_main', |
255 '../third_party/mini_chromium/mini_chromium/base/base.gyp:base', | 258 '../third_party/mini_chromium/mini_chromium/base/base.gyp:base', |
256 ], | 259 ], |
257 'include_dirs': [ | 260 'include_dirs': [ |
258 '..', | 261 '..', |
259 ], | 262 ], |
260 'sources': [ | 263 'sources': [ |
261 'file/string_file_writer_test.cc', | 264 'file/string_file_test.cc', |
262 'mac/checked_mach_address_range_test.cc', | 265 'mac/checked_mach_address_range_test.cc', |
263 'mac/launchd_test.mm', | 266 'mac/launchd_test.mm', |
264 'mac/mac_util_test.mm', | 267 'mac/mac_util_test.mm', |
265 'mac/service_management_test.mm', | 268 'mac/service_management_test.mm', |
266 'mac/xattr_test.cc', | 269 'mac/xattr_test.cc', |
267 'mach/child_port_handshake_test.cc', | 270 'mach/child_port_handshake_test.cc', |
268 'mach/child_port_server_test.cc', | 271 'mach/child_port_server_test.cc', |
269 'mach/composite_mach_message_server_test.cc', | 272 'mach/composite_mach_message_server_test.cc', |
270 'mach/exc_client_variants_test.cc', | 273 'mach/exc_client_variants_test.cc', |
271 'mach/exc_server_variants_test.cc', | 274 'mach/exc_server_variants_test.cc', |
(...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
315 }, | 318 }, |
316 { | 319 { |
317 'target_name': 'util_test_multiprocess_exec_test_child', | 320 'target_name': 'util_test_multiprocess_exec_test_child', |
318 'type': 'executable', | 321 'type': 'executable', |
319 'sources': [ | 322 'sources': [ |
320 'test/multiprocess_exec_test_child.cc', | 323 'test/multiprocess_exec_test_child.cc', |
321 ], | 324 ], |
322 }, | 325 }, |
323 ], | 326 ], |
324 } | 327 } |
OLD | NEW |