OLD | NEW |
1 # Copyright 2013 The Chromium Authors. All rights reserved. | 1 # Copyright 2013 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 97 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
108 'sources!': [ | 108 'sources!': [ |
109 'event_utils.cc', | 109 'event_utils.cc', |
110 'keycodes/keyboard_code_conversion.cc', | 110 'keycodes/keyboard_code_conversion.cc', |
111 ], | 111 ], |
112 }], | 112 }], |
113 ['use_x11==1', { | 113 ['use_x11==1', { |
114 'dependencies': [ | 114 'dependencies': [ |
115 '<(DEPTH)/build/linux/system.gyp:x11', | 115 '<(DEPTH)/build/linux/system.gyp:x11', |
116 ], | 116 ], |
117 }], | 117 }], |
| 118 ['OS=="mac"', { |
| 119 'link_settings': { |
| 120 'libraries': [ |
| 121 '$(SDKROOT)/System/Library/Frameworks/AppKit.framework', |
| 122 '$(SDKROOT)/System/Library/Frameworks/Foundation.framework', |
| 123 ], |
| 124 }, |
| 125 }], |
118 ], | 126 ], |
119 } | 127 } |
120 ], | 128 ], |
121 } | 129 } |
OLD | NEW |