OLD | NEW |
1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. |
2 # Use of this source code is governed by a BSD-style license that can be | 2 # Use of this source code is governed by a BSD-style license that can be |
3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
4 | 4 |
5 { | 5 { |
6 'variables': { | 6 'variables': { |
7 'chromium_code': 1, | 7 'chromium_code': 1, |
8 }, | 8 }, |
9 'targets': [ | 9 'targets': [ |
10 { | 10 { |
(...skipping 122 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
133 }], | 133 }], |
134 ['OS=="mac"', { | 134 ['OS=="mac"', { |
135 'dependencies': [ | 135 'dependencies': [ |
136 '../ui.gyp:ui_cocoa_third_party_toolkits', | 136 '../ui.gyp:ui_cocoa_third_party_toolkits', |
137 ], | 137 ], |
138 'include_dirs': [ | 138 'include_dirs': [ |
139 '../../third_party/GTM', | 139 '../../third_party/GTM', |
140 ], | 140 ], |
141 'link_settings': { | 141 'link_settings': { |
142 'libraries': [ | 142 'libraries': [ |
| 143 '$(SDKROOT)/System/Library/Frameworks/AppKit.framework', |
| 144 '$(SDKROOT)/System/Library/Frameworks/ApplicationServices.framewor
k', |
| 145 '$(SDKROOT)/System/Library/Frameworks/CoreFoundation.framework', |
| 146 '$(SDKROOT)/System/Library/Frameworks/Foundation.framework', |
143 '$(SDKROOT)/System/Library/Frameworks/QuartzCore.framework', | 147 '$(SDKROOT)/System/Library/Frameworks/QuartzCore.framework', |
144 ], | 148 ], |
145 }, | 149 }, |
146 }, { # OS!="mac" | 150 }, { # OS!="mac" |
147 'sources/': [ | 151 'sources/': [ |
148 ['exclude', 'cocoa/'], | 152 ['exclude', 'cocoa/'], |
149 ], | 153 ], |
150 }], | 154 }], |
151 ], | 155 ], |
152 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 156 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
(...skipping 67 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
220 '../../webkit/glue/webkit_glue.gyp:glue', | 224 '../../webkit/glue/webkit_glue.gyp:glue', |
221 '../../webkit/glue/webkit_glue.gyp:glue_child', | 225 '../../webkit/glue/webkit_glue.gyp:glue_child', |
222 ], | 226 ], |
223 }], | 227 }], |
224 ], | 228 ], |
225 # Disable c4267 warnings until we fix size_t to int truncations. | 229 # Disable c4267 warnings until we fix size_t to int truncations. |
226 'msvs_disabled_warnings': [ 4267, ], | 230 'msvs_disabled_warnings': [ 4267, ], |
227 }, | 231 }, |
228 ], | 232 ], |
229 } | 233 } |
OLD | NEW |