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