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 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
44 'win/winnt.h', | 44 'win/winnt.h', |
45 ], | 45 ], |
46 'conditions': [ | 46 'conditions': [ |
47 ['OS=="mac"', { | 47 ['OS=="mac"', { |
48 'dependencies': [ | 48 'dependencies': [ |
49 '../third_party/apple_cctools/apple_cctools.gyp:apple_cctools', | 49 '../third_party/apple_cctools/apple_cctools.gyp:apple_cctools', |
50 ], | 50 ], |
51 'include_dirs': [ | 51 'include_dirs': [ |
52 'mac', | 52 'mac', |
53 ], | 53 ], |
54 'direct_dependent_settings': { | 54 'all_dependent_settings': { |
55 'include_dirs': [ | 55 'include_dirs': [ |
56 'mac', | 56 'mac', |
57 ], | 57 ], |
58 }, | 58 }, |
59 }], | 59 }], |
60 ['OS=="win"', { | 60 ['OS=="win"', { |
61 'include_dirs': [ | 61 'include_dirs': [ |
62 'win', | 62 'win', |
63 ], | 63 ], |
64 'direct_dependent_settings': { | 64 'all_dependent_settings': { |
65 'include_dirs': [ | 65 'include_dirs': [ |
66 'win', | 66 'win', |
67 ], | 67 ], |
68 }, | 68 }, |
69 'dependencies': [ | 69 'dependencies': [ |
70 '../third_party/getopt/getopt.gyp:getopt', | 70 '../third_party/getopt/getopt.gyp:getopt', |
71 ], | 71 ], |
72 }, { | 72 }, { |
73 'include_dirs': [ | 73 'include_dirs': [ |
74 'non_win', | 74 'non_win', |
75 ], | 75 ], |
76 'direct_dependent_settings': { | 76 'all_dependent_settings': { |
77 'include_dirs': [ | 77 'include_dirs': [ |
78 'non_win', | 78 'non_win', |
79 ], | 79 ], |
80 }, | 80 }, |
81 }], | 81 }], |
82 ], | 82 ], |
83 }, | 83 }, |
84 ], | 84 ], |
85 } | 85 } |
OLD | NEW |