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 'enable_wexit_time_destructors': 1, | 7 'enable_wexit_time_destructors': 1, |
8 'chromium_code': 1 | 8 'chromium_code': 1 |
9 }, | 9 }, |
10 'targets': [ | 10 'targets': [ |
(...skipping 70 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
81 ['use_ozone==0', { | 81 ['use_ozone==0', { |
82 'sources!': [ | 82 'sources!': [ |
83 'cursors/webcursor_null.cc', | 83 'cursors/webcursor_null.cc', |
84 ], | 84 ], |
85 }], | 85 }], |
86 ['OS!="mac"', { | 86 ['OS!="mac"', { |
87 'sources/': [['exclude', '_mac\\.(cc|mm)$']], | 87 'sources/': [['exclude', '_mac\\.(cc|mm)$']], |
88 }, { # else: OS=="mac" | 88 }, { # else: OS=="mac" |
89 'link_settings': { | 89 'link_settings': { |
90 'libraries': [ | 90 'libraries': [ |
| 91 '$(SDKROOT)/System/Library/Frameworks/AppKit.framework', |
91 '$(SDKROOT)/System/Library/Frameworks/QuartzCore.framework', | 92 '$(SDKROOT)/System/Library/Frameworks/QuartzCore.framework', |
92 ], | 93 ], |
93 }, | 94 }, |
94 }], | 95 }], |
95 ['OS!="win"', { | 96 ['OS!="win"', { |
96 'sources/': [['exclude', '_win\\.cc$']], | 97 'sources/': [['exclude', '_win\\.cc$']], |
97 }, { # else: OS=="win" | 98 }, { # else: OS=="win" |
98 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 99 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
99 'msvs_disabled_warnings': [ 4800, 4267 ], | 100 'msvs_disabled_warnings': [ 4800, 4267 ], |
100 'sources/': [['exclude', '_posix\\.cc$']], | 101 'sources/': [['exclude', '_posix\\.cc$']], |
101 }], | 102 }], |
102 ], | 103 ], |
103 }, | 104 }, |
104 ], | 105 ], |
105 } | 106 } |
OLD | NEW |