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