Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(309)

Side by Side Diff: compat/compat.gyp

Issue 1424443002: Make compat export include_dirs to all dependents (Closed) Base URL: https://chromium.googlesource.com/crashpad/crashpad@master
Patch Set: Created 5 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698