| 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 96 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 107 'stdlib/objc.h', | 107 'stdlib/objc.h', |
| 108 'stdlib/pointer_container.h', | 108 'stdlib/pointer_container.h', |
| 109 'stdlib/string_number_conversion.cc', | 109 'stdlib/string_number_conversion.cc', |
| 110 'stdlib/string_number_conversion.h', | 110 'stdlib/string_number_conversion.h', |
| 111 'stdlib/strlcpy.cc', | 111 'stdlib/strlcpy.cc', |
| 112 'stdlib/strlcpy.h', | 112 'stdlib/strlcpy.h', |
| 113 'stdlib/strnlen.cc', | 113 'stdlib/strnlen.cc', |
| 114 'stdlib/strnlen.h', | 114 'stdlib/strnlen.h', |
| 115 'synchronization/semaphore.cc', | 115 'synchronization/semaphore.cc', |
| 116 'synchronization/semaphore.h', | 116 'synchronization/semaphore.h', |
| 117 'win/scoped_handle.cc', |
| 118 'win/scoped_handle.h', |
| 117 ], | 119 ], |
| 118 'conditions': [ | 120 'conditions': [ |
| 119 ['OS=="mac"', { | 121 ['OS=="mac"', { |
| 120 'conditions': [ | 122 'conditions': [ |
| 121 ['GENERATOR=="ninja"', { | 123 ['GENERATOR=="ninja"', { |
| 122 # ninja’s rules can’t deal with sources that have paths relative | 124 # ninja’s rules can’t deal with sources that have paths relative |
| 123 # to environment variables like SDKROOT. Copy the .defs files out | 125 # to environment variables like SDKROOT. Copy the .defs files out |
| 124 # of SDKROOT and into a place they can be referenced without any | 126 # of SDKROOT and into a place they can be referenced without any |
| 125 # environment variables. | 127 # environment variables. |
| 126 'copies': [ | 128 'copies': [ |
| (...skipping 162 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 289 }, | 291 }, |
| 290 { | 292 { |
| 291 'target_name': 'util_test_multiprocess_exec_test_child', | 293 'target_name': 'util_test_multiprocess_exec_test_child', |
| 292 'type': 'executable', | 294 'type': 'executable', |
| 293 'sources': [ | 295 'sources': [ |
| 294 'test/multiprocess_exec_test_child.cc', | 296 'test/multiprocess_exec_test_child.cc', |
| 295 ], | 297 ], |
| 296 }, | 298 }, |
| 297 ], | 299 ], |
| 298 } | 300 } |
| OLD | NEW |