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