| OLD | NEW |
| 1 # Copyright 2015 The Crashpad Authors. All rights reserved. | 1 # Copyright 2015 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 29 matching lines...) Expand all Loading... |
| 40 'mac/mach_errors.h', | 40 'mac/mach_errors.h', |
| 41 'mac/mach_multiprocess.cc', | 41 'mac/mach_multiprocess.cc', |
| 42 'mac/mach_multiprocess.h', | 42 'mac/mach_multiprocess.h', |
| 43 'multiprocess.h', | 43 'multiprocess.h', |
| 44 'multiprocess_exec.h', | 44 'multiprocess_exec.h', |
| 45 'multiprocess_exec_posix.cc', | 45 'multiprocess_exec_posix.cc', |
| 46 'multiprocess_exec_win.cc', | 46 'multiprocess_exec_win.cc', |
| 47 'multiprocess_posix.cc', | 47 'multiprocess_posix.cc', |
| 48 'paths.cc', | 48 'paths.cc', |
| 49 'paths.h', | 49 'paths.h', |
| 50 'paths_linux.cc', |
| 50 'paths_mac.cc', | 51 'paths_mac.cc', |
| 51 'paths_win.cc', | 52 'paths_win.cc', |
| 52 'scoped_temp_dir.cc', | 53 'scoped_temp_dir.cc', |
| 53 'scoped_temp_dir.h', | 54 'scoped_temp_dir.h', |
| 54 'scoped_temp_dir_posix.cc', | 55 'scoped_temp_dir_posix.cc', |
| 55 'scoped_temp_dir_win.cc', | 56 'scoped_temp_dir_win.cc', |
| 56 'win/child_launcher.cc', | 57 'win/child_launcher.cc', |
| 57 'win/child_launcher.h', | 58 'win/child_launcher.h', |
| 58 'win/win_child_process.cc', | 59 'win/win_child_process.cc', |
| 59 'win/win_child_process.h', | 60 'win/win_child_process.h', |
| 60 'win/win_multiprocess.cc', | 61 'win/win_multiprocess.cc', |
| 61 'win/win_multiprocess.h', | 62 'win/win_multiprocess.h', |
| 62 ], | 63 ], |
| 63 'conditions': [ | 64 'conditions': [ |
| 64 ['OS=="mac"', { | 65 ['OS=="mac"', { |
| 65 'link_settings': { | 66 'link_settings': { |
| 66 'libraries': [ | 67 'libraries': [ |
| 67 '$(SDKROOT)/usr/lib/libbsm.dylib', | 68 '$(SDKROOT)/usr/lib/libbsm.dylib', |
| 68 ], | 69 ], |
| 69 }, | 70 }, |
| 70 }], | 71 }], |
| 71 ['OS=="win"', { | 72 ['OS=="win"', { |
| 72 'link_settings': { | 73 'link_settings': { |
| 73 'libraries': [ | 74 'libraries': [ |
| 74 '-lshell32.lib', | 75 '-lshell32.lib', |
| 75 ], | 76 ], |
| 76 }, | 77 }, |
| 77 }], | 78 }], |
| 78 ], | 79 ], |
| 80 'target_conditions': [ |
| 81 ['OS=="android"', { |
| 82 'sources/': [ |
| 83 ['include', '^paths_linux\\.cc$'], |
| 84 ], |
| 85 }], |
| 86 ], |
| 79 }, | 87 }, |
| 80 ], | 88 ], |
| 81 } | 89 } |
| OLD | NEW |