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 116 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
127 'printing_context_mac.mm', | 127 'printing_context_mac.mm', |
128 'printing_context_mac.h', | 128 'printing_context_mac.h', |
129 ], | 129 ], |
130 }], | 130 }], |
131 ['OS=="mac" and use_aura==0',{ | 131 ['OS=="mac" and use_aura==0',{ |
132 'sources': [ | 132 'sources': [ |
133 'printing_context_mac.mm', | 133 'printing_context_mac.mm', |
134 'printing_context_mac.h', | 134 'printing_context_mac.h', |
135 ], | 135 ], |
136 }], | 136 }], |
| 137 ['OS=="mac"', { |
| 138 'link_settings': { |
| 139 'libraries': [ |
| 140 '$(SDKROOT)/System/Library/Frameworks/AppKit.framework', |
| 141 '$(SDKROOT)/System/Library/Frameworks/ApplicationServices.framewor
k', |
| 142 '$(SDKROOT)/System/Library/Frameworks/CoreFoundation.framework', |
| 143 '$(SDKROOT)/System/Library/Frameworks/Foundation.framework', |
| 144 ], |
| 145 }, |
| 146 }], |
137 ['OS=="win"', { | 147 ['OS=="win"', { |
138 'dependencies': [ | 148 'dependencies': [ |
139 '../win8/win8.gyp:win8_util', | 149 '../win8/win8.gyp:win8_util', |
140 ], | 150 ], |
141 'conditions': [ | 151 'conditions': [ |
142 ['use_aura==1', { | 152 ['use_aura==1', { |
143 'dependencies': [ | 153 'dependencies': [ |
144 '<(DEPTH)/ui/aura/aura.gyp:aura', | 154 '<(DEPTH)/ui/aura/aura.gyp:aura', |
145 ], | 155 ], |
146 }]], | 156 }]], |
(...skipping 180 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
327 '<!@(python cups_config_helper.py --cflags)', | 337 '<!@(python cups_config_helper.py --cflags)', |
328 ], | 338 ], |
329 }], | 339 }], |
330 ], | 340 ], |
331 }, | 341 }, |
332 }], | 342 }], |
333 ], | 343 ], |
334 }, | 344 }, |
335 ], | 345 ], |
336 } | 346 } |
OLD | NEW |