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

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: Addressed code review feedback 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 1231 matching lines...) Expand 10 before | Expand all | Expand 10 after
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 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698