Chromium Code Reviews| 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 18 matching lines...) Expand all Loading... | |
| 29 'mac/mach-o/loader.h', | 29 'mac/mach-o/loader.h', |
| 30 'mac/sys/resource.h', | 30 'mac/sys/resource.h', |
| 31 'non_mac/mach/mach.h', | 31 'non_mac/mach/mach.h', |
| 32 'non_win/dbghelp.h', | 32 'non_win/dbghelp.h', |
| 33 'non_win/minwinbase.h', | 33 'non_win/minwinbase.h', |
| 34 'non_win/timezoneapi.h', | 34 'non_win/timezoneapi.h', |
| 35 'non_win/verrsrc.h', | 35 'non_win/verrsrc.h', |
| 36 'non_win/windows.h', | 36 'non_win/windows.h', |
| 37 'non_win/winnt.h', | 37 'non_win/winnt.h', |
| 38 'win/sys/types.h', | 38 'win/sys/types.h', |
| 39 'win/getopt.h', | |
|
Mark Mentovai
2015/05/05 22:19:49
getopt < sys
scottmg
2015/05/05 23:03:37
Done.
| |
| 40 'win/time.cc', | |
| 41 'win/time.h', | |
| 39 'win/winnt.h', | 42 'win/winnt.h', |
| 40 ], | 43 ], |
| 41 'conditions': [ | 44 'conditions': [ |
| 42 ['OS=="mac"', { | 45 ['OS=="mac"', { |
| 43 'dependencies': [ | 46 'dependencies': [ |
| 44 '../third_party/apple_cctools/apple_cctools.gyp:apple_cctools', | 47 '../third_party/apple_cctools/apple_cctools.gyp:apple_cctools', |
| 45 ], | 48 ], |
| 46 'include_dirs': [ | 49 'include_dirs': [ |
| 47 'mac', | 50 'mac', |
| 48 ], | 51 ], |
| 49 'direct_dependent_settings': { | 52 'direct_dependent_settings': { |
| 50 'include_dirs': [ | 53 'include_dirs': [ |
| 51 'mac', | 54 'mac', |
| 52 ], | 55 ], |
| 53 }, | 56 }, |
| 54 }], | 57 }], |
| 55 ['OS=="win"', { | 58 ['OS=="win"', { |
| 56 'include_dirs': [ | 59 'include_dirs': [ |
| 57 'win', | 60 'win', |
| 58 ], | 61 ], |
| 59 'direct_dependent_settings': { | 62 'direct_dependent_settings': { |
| 60 'include_dirs': [ | 63 'include_dirs': [ |
| 61 'win', | 64 'win', |
| 65 '../third_party/getopt', | |
|
Mark Mentovai
2015/05/05 22:19:49
Better to put this in the crashpad_getopt target a
scottmg
2015/05/05 23:03:37
Done. (It's not needed at all)
| |
| 62 ], | 66 ], |
| 63 }, | 67 }, |
| 68 'dependencies': [ | |
| 69 '../third_party/getopt/getopt.gyp:crashpad_getopt', | |
| 70 ], | |
| 64 }, { | 71 }, { |
| 65 'include_dirs': [ | 72 'include_dirs': [ |
| 66 'non_win', | 73 'non_win', |
| 67 ], | 74 ], |
| 68 'direct_dependent_settings': { | 75 'direct_dependent_settings': { |
| 69 'include_dirs': [ | 76 'include_dirs': [ |
| 70 'non_win', | 77 'non_win', |
| 71 ], | 78 ], |
| 72 }, | 79 }, |
| 73 }], | 80 }], |
| 74 ], | 81 ], |
| 75 }, | 82 }, |
| 76 ], | 83 ], |
| 77 } | 84 } |
| OLD | NEW |