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 22 matching lines...) Expand all Loading... |
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/checked_mach_address_range.cc', | 35 'mac/checked_mach_address_range.cc', |
36 'mac/checked_mach_address_range.h', | 36 'mac/checked_mach_address_range.h', |
37 'mac/launchd.h', | 37 'mac/launchd.h', |
38 'mac/launchd.mm', | 38 'mac/launchd.mm', |
39 'mac/mac_util.cc', | 39 'mac/mac_util.cc', |
40 'mac/mac_util.h', | 40 'mac/mac_util.h', |
41 'mac/service_management.cc', | 41 'mac/service_management.cc', |
42 'mac/service_management.h', | 42 'mac/service_management.h', |
| 43 'mach/child_port_types.h', |
43 'mach/exc_client_variants.cc', | 44 'mach/exc_client_variants.cc', |
44 'mach/exc_client_variants.h', | 45 'mach/exc_client_variants.h', |
45 'mach/exc_server_variants.cc', | 46 'mach/exc_server_variants.cc', |
46 'mach/exc_server_variants.h', | 47 'mach/exc_server_variants.h', |
47 'mach/exception_behaviors.cc', | 48 'mach/exception_behaviors.cc', |
48 'mach/exception_behaviors.h', | 49 'mach/exception_behaviors.h', |
49 'mach/exception_ports.cc', | 50 'mach/exception_ports.cc', |
50 'mach/exception_ports.h', | 51 'mach/exception_ports.h', |
51 'mach/mach_extensions.cc', | 52 'mach/mach_extensions.cc', |
52 'mach/mach_extensions.h', | 53 'mach/mach_extensions.h', |
(...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
99 'stdlib/strlcpy.h', | 100 'stdlib/strlcpy.h', |
100 'stdlib/strnlen.cc', | 101 'stdlib/strnlen.cc', |
101 'stdlib/strnlen.h', | 102 'stdlib/strnlen.h', |
102 'synchronization/semaphore.cc', | 103 'synchronization/semaphore.cc', |
103 'synchronization/semaphore.h', | 104 'synchronization/semaphore.h', |
104 ], | 105 ], |
105 'conditions': [ | 106 'conditions': [ |
106 ['OS=="mac"', { | 107 ['OS=="mac"', { |
107 'actions': [ | 108 'actions': [ |
108 { | 109 { |
| 110 'action_name': 'mig child_port.defs', |
| 111 'variables': { |
| 112 'child_port_defs_file': 'mach/child_port.defs', |
| 113 }, |
| 114 'inputs': [ |
| 115 'mach/mig.py', |
| 116 '<(child_port_defs_file)', |
| 117 ], |
| 118 'outputs': [ |
| 119 '<(INTERMEDIATE_DIR)/util/mach/child_portUser.c', |
| 120 '<(INTERMEDIATE_DIR)/util/mach/child_portServer.c', |
| 121 '<(INTERMEDIATE_DIR)/util/mach/child_port.h', |
| 122 '<(INTERMEDIATE_DIR)/util/mach/child_portServer.h', |
| 123 ], |
| 124 'action': [ |
| 125 'python', '<@(_inputs)', '<@(_outputs)' |
| 126 ], |
| 127 'process_outputs_as_sources': 1, |
| 128 }, |
| 129 { |
109 'action_name': 'mig exc.defs', | 130 'action_name': 'mig exc.defs', |
110 'inputs': [ | 131 'inputs': [ |
111 'mach/mig.py', | 132 'mach/mig.py', |
112 '$(SDKROOT)/usr/include/mach/exc.defs', | 133 '$(SDKROOT)/usr/include/mach/exc.defs', |
113 ], | 134 ], |
114 'outputs': [ | 135 'outputs': [ |
115 '<(INTERMEDIATE_DIR)/util/mach/excUser.c', | 136 '<(INTERMEDIATE_DIR)/util/mach/excUser.c', |
116 '<(INTERMEDIATE_DIR)/util/mach/excServer.c', | 137 '<(INTERMEDIATE_DIR)/util/mach/excServer.c', |
117 '<(INTERMEDIATE_DIR)/util/mach/exc.h', | 138 '<(INTERMEDIATE_DIR)/util/mach/exc.h', |
118 '<(INTERMEDIATE_DIR)/util/mach/excServer.h', | 139 '<(INTERMEDIATE_DIR)/util/mach/excServer.h', |
(...skipping 137 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
256 }, | 277 }, |
257 { | 278 { |
258 'target_name': 'util_test_multiprocess_exec_test_child', | 279 'target_name': 'util_test_multiprocess_exec_test_child', |
259 'type': 'executable', | 280 'type': 'executable', |
260 'sources': [ | 281 'sources': [ |
261 'test/multiprocess_exec_test_child.cc', | 282 'test/multiprocess_exec_test_child.cc', |
262 ], | 283 ], |
263 }, | 284 }, |
264 ], | 285 ], |
265 } | 286 } |
OLD | NEW |