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

Side by Side Diff: crypto/crypto.gyp

Issue 1647453002: allocator cleanup: remove dependencies on allocator from all targets (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: pure rebase Created 4 years, 10 months 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
« no previous file with comments | « courgette/courgette.gyp ('k') | device/device_tests.gyp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2012 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 'includes': [ 9 'includes': [
10 'crypto.gypi', 10 'crypto.gypi',
(...skipping 177 matching lines...) Expand 10 before | Expand all | Expand 10 after
188 'crypto', 188 'crypto',
189 'crypto_test_support', 189 'crypto_test_support',
190 '../base/base.gyp:base', 190 '../base/base.gyp:base',
191 '../base/base.gyp:run_all_unittests', 191 '../base/base.gyp:run_all_unittests',
192 '../base/base.gyp:test_support_base', 192 '../base/base.gyp:test_support_base',
193 '../testing/gmock.gyp:gmock', 193 '../testing/gmock.gyp:gmock',
194 '../testing/gtest.gyp:gtest', 194 '../testing/gtest.gyp:gtest',
195 ], 195 ],
196 'conditions': [ 196 'conditions': [
197 [ 'use_nss_certs == 1', { 197 [ 'use_nss_certs == 1', {
198 'conditions': [
199 [ 'use_allocator!="none"', {
200 'dependencies': [
201 '../base/allocator/allocator.gyp:allocator',
202 ],
203 },
204 ],
205 ],
206 'dependencies': [ 198 'dependencies': [
207 '../build/linux/system.gyp:ssl', 199 '../build/linux/system.gyp:ssl',
208 ], 200 ],
209 }], 201 }],
210 [ 'use_openssl == 1 and use_nss_certs == 0', { 202 [ 'use_openssl == 1 and use_nss_certs == 0', {
211 # Some files are built when NSS is used at all, either for the 203 # Some files are built when NSS is used at all, either for the
212 # internal crypto library or the platform certificate library. 204 # internal crypto library or the platform certificate library.
213 'sources!': [ 205 'sources!': [
214 'nss_key_util_unittest.cc', 206 'nss_key_util_unittest.cc',
215 'nss_util_unittest.cc', 207 'nss_util_unittest.cc',
(...skipping 102 matching lines...) Expand 10 before | Expand all | Expand 10 after
318 '../build/isolate.gypi', 310 '../build/isolate.gypi',
319 ], 311 ],
320 'sources': [ 312 'sources': [
321 'crypto_unittests.isolate', 313 'crypto_unittests.isolate',
322 ], 314 ],
323 }, 315 },
324 ], 316 ],
325 }], 317 }],
326 ], 318 ],
327 } 319 }
OLDNEW
« no previous file with comments | « courgette/courgette.gyp ('k') | device/device_tests.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698