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 1231 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1242 'test/extensions_unittests_main.cc', | 1242 'test/extensions_unittests_main.cc', |
1243 ], | 1243 ], |
1244 # Disable c4267 warnings until we fix size_t to int truncations. | 1244 # Disable c4267 warnings until we fix size_t to int truncations. |
1245 'msvs_disabled_warnings': [ 4267, ], | 1245 'msvs_disabled_warnings': [ 4267, ], |
1246 'conditions': [ | 1246 'conditions': [ |
1247 ['OS=="win" and win_use_allocator_shim==1', { | 1247 ['OS=="win" and win_use_allocator_shim==1', { |
1248 'dependencies': [ | 1248 'dependencies': [ |
1249 '../base/allocator/allocator.gyp:allocator', | 1249 '../base/allocator/allocator.gyp:allocator', |
1250 ], | 1250 ], |
1251 }], | 1251 }], |
| 1252 ['use_openssl==1', { |
| 1253 'sources': [ |
| 1254 'browser/api/cast_channel/cast_auth_util_openssl_unittest.cc', |
| 1255 ] |
| 1256 }], |
1252 ], | 1257 ], |
1253 }, | 1258 }, |
1254 ] | 1259 ] |
1255 } | 1260 } |
OLD | NEW |