| 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, |
| 11 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | 11 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 12 # See the License for the specific language governing permissions and | 12 # See the License for the specific language governing permissions and |
| 13 # limitations under the License. | 13 # limitations under the License. |
| 14 | 14 |
| 15 { | 15 { |
| 16 'includes': [ |
| 17 '../build/crashpad.gypi', |
| 18 ], |
| 16 'conditions': [ | 19 'conditions': [ |
| 17 ['OS=="mac"', { | 20 ['OS=="mac"', { |
| 18 'variables': { | 21 'variables': { |
| 19 # Programs that use task_for_pid() can indicate to taskgated(8) in their | 22 # Programs that use task_for_pid() can indicate to taskgated(8) in their |
| 20 # Info.plist that they are allowed to call that function. In order for | 23 # Info.plist that they are allowed to call that function. In order for |
| 21 # this to work, the programs in question must be signed by an authority | 24 # this to work, the programs in question must be signed by an authority |
| 22 # trusted by the system. Signing is beyond the scope of the build, but | 25 # trusted by the system. Signing is beyond the scope of the build, but |
| 23 # the key to make this work is placed in Info.plist to enable the | 26 # the key to make this work is placed in Info.plist to enable the |
| 24 # desired behavior once the tools that require this access are signed. | 27 # desired behavior once the tools that require this access are signed. |
| 25 # | 28 # |
| (...skipping 134 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 160 'sources': [ | 163 'sources': [ |
| 161 'mac/run_with_crashpad.cc', | 164 'mac/run_with_crashpad.cc', |
| 162 ], | 165 ], |
| 163 }, | 166 }, |
| 164 ], | 167 ], |
| 165 }, { | 168 }, { |
| 166 'targets': [], | 169 'targets': [], |
| 167 }], | 170 }], |
| 168 ], | 171 ], |
| 169 } | 172 } |
| OLD | NEW |