| 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 10 matching lines...) Expand all Loading... |
| 21 'target_name': 'crashpad_compat', | 21 'target_name': 'crashpad_compat', |
| 22 'type': 'static_library', | 22 'type': 'static_library', |
| 23 'sources': [ | 23 'sources': [ |
| 24 'mac/AvailabilityMacros.h', | 24 'mac/AvailabilityMacros.h', |
| 25 'mac/kern/exc_resource.h', | 25 'mac/kern/exc_resource.h', |
| 26 'mac/mach/mach.h', | 26 'mac/mach/mach.h', |
| 27 'mac/mach-o/getsect.cc', | 27 'mac/mach-o/getsect.cc', |
| 28 'mac/mach-o/getsect.h', | 28 'mac/mach-o/getsect.h', |
| 29 'mac/mach-o/loader.h', | 29 'mac/mach-o/loader.h', |
| 30 'mac/sys/resource.h', | 30 'mac/sys/resource.h', |
| 31 'non_cxx11_lib/type_traits', |
| 32 'non_cxx11_lib/utility', |
| 31 'non_mac/mach/mach.h', | 33 'non_mac/mach/mach.h', |
| 32 'non_win/dbghelp.h', | 34 'non_win/dbghelp.h', |
| 33 'non_win/minwinbase.h', | 35 'non_win/minwinbase.h', |
| 34 'non_win/timezoneapi.h', | 36 'non_win/timezoneapi.h', |
| 35 'non_win/verrsrc.h', | 37 'non_win/verrsrc.h', |
| 36 'non_win/windows.h', | 38 'non_win/windows.h', |
| 37 'non_win/winnt.h', | 39 'non_win/winnt.h', |
| 38 'win/getopt.h', | 40 'win/getopt.h', |
| 39 'win/strings.cc', | 41 'win/strings.cc', |
| 40 'win/strings.h', | 42 'win/strings.h', |
| 41 'win/sys/types.h', | 43 'win/sys/types.h', |
| 42 'win/time.cc', | 44 'win/time.cc', |
| 43 'win/time.h', | 45 'win/time.h', |
| 44 'win/winnt.h', | 46 'win/winnt.h', |
| 45 ], | 47 ], |
| 46 'conditions': [ | 48 'conditions': [ |
| 47 ['OS=="mac"', { | 49 ['OS=="mac"', { |
| 48 'dependencies': [ | 50 'dependencies': [ |
| 49 '../third_party/apple_cctools/apple_cctools.gyp:apple_cctools', | 51 '../third_party/apple_cctools/apple_cctools.gyp:apple_cctools', |
| 50 ], | 52 ], |
| 51 'include_dirs': [ | 53 'include_dirs': [ |
| 52 'mac', | 54 'mac', |
| 55 'non_cxx11_lib', |
| 53 ], | 56 ], |
| 54 'direct_dependent_settings': { | 57 'direct_dependent_settings': { |
| 55 'include_dirs': [ | 58 'include_dirs': [ |
| 56 'mac', | 59 'mac', |
| 60 'non_cxx11_lib', |
| 57 ], | 61 ], |
| 58 }, | 62 }, |
| 59 }], | 63 }], |
| 60 ['OS=="win"', { | 64 ['OS=="win"', { |
| 61 'include_dirs': [ | 65 'include_dirs': [ |
| 62 'win', | 66 'win', |
| 63 ], | 67 ], |
| 64 'direct_dependent_settings': { | 68 'direct_dependent_settings': { |
| 65 'include_dirs': [ | 69 'include_dirs': [ |
| 66 'win', | 70 'win', |
| 67 ], | 71 ], |
| 68 }, | 72 }, |
| 69 'dependencies': [ | 73 'dependencies': [ |
| 70 '../third_party/getopt/getopt.gyp:getopt', | 74 '../third_party/getopt/getopt.gyp:getopt', |
| 71 ], | 75 ], |
| 72 }, { | 76 }, { |
| 73 'include_dirs': [ | 77 'include_dirs': [ |
| 74 'non_win', | 78 'non_win', |
| 75 ], | 79 ], |
| 76 'direct_dependent_settings': { | 80 'direct_dependent_settings': { |
| 77 'include_dirs': [ | 81 'include_dirs': [ |
| 78 'non_win', | 82 'non_win', |
| 79 ], | 83 ], |
| 80 }, | 84 }, |
| 81 }], | 85 }], |
| 82 ], | 86 ], |
| 83 }, | 87 }, |
| 84 ], | 88 ], |
| 85 } | 89 } |
| OLD | NEW |