Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(48)

Side by Side Diff: extensions/extensions.gyp

Issue 687733004: Implement crypto signature verification routines using OpenSSL. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Misc. fixes Created 6 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
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 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698