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

Side by Side Diff: crypto/crypto.gyp

Issue 205813004: crypto.gyp: move openssl dependency into use_openssl section. Remove redundant source excludes. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 9 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 | Annotate | Revision Log
« no previous file with comments | « no previous file | no next file » | 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 36 matching lines...) Expand 10 before | Expand all | Expand 10 after
47 ], 47 ],
48 }], 48 }],
49 [ 'OS != "mac" and OS != "ios"', { 49 [ 'OS != "mac" and OS != "ios"', {
50 'sources!': [ 50 'sources!': [
51 'apple_keychain.h', 51 'apple_keychain.h',
52 'mock_apple_keychain.cc', 52 'mock_apple_keychain.cc',
53 'mock_apple_keychain.h', 53 'mock_apple_keychain.h',
54 ], 54 ],
55 }], 55 }],
56 [ 'OS == "android"', { 56 [ 'OS == "android"', {
57 'dependencies': [
58 '../third_party/openssl/openssl.gyp:openssl',
59 ],
60 'sources/': [
61 ['exclude', 'ec_private_key_nss\.cc$'],
62 ['exclude', 'ec_signature_creator_nss\.cc$'],
63 ['exclude', 'encryptor_nss\.cc$'],
64 ['exclude', 'hmac_nss\.cc$'],
65 ['exclude', 'signature_verifier_nss\.cc$'],
66 ['exclude', 'symmetric_key_nss\.cc$'],
67 ],
68 'includes': [ 57 'includes': [
69 '../build/android/cpufeatures.gypi', 58 '../build/android/cpufeatures.gypi',
70 ], 59 ],
71 }], 60 }],
72 [ 'os_bsd==1', { 61 [ 'os_bsd==1', {
73 'link_settings': { 62 'link_settings': {
74 'libraries': [ 63 'libraries': [
75 '-L/usr/local/lib -lexecinfo', 64 '-L/usr/local/lib -lexecinfo',
76 ], 65 ],
77 }, 66 },
(...skipping 27 matching lines...) Expand all
105 'sources!': [ 94 'sources!': [
106 'capi_util.h', 95 'capi_util.h',
107 'capi_util.cc', 96 'capi_util.cc',
108 ], 97 ],
109 }], 98 }],
110 [ 'OS == "win"', { 99 [ 'OS == "win"', {
111 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. 100 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
112 'msvs_disabled_warnings': [4267, ], 101 'msvs_disabled_warnings': [4267, ],
113 }], 102 }],
114 [ 'use_openssl==1', { 103 [ 'use_openssl==1', {
104 'dependencies': [
105 '../third_party/openssl/openssl.gyp:openssl',
106 ],
115 # TODO(joth): Use a glob to match exclude patterns once the 107 # TODO(joth): Use a glob to match exclude patterns once the
116 # OpenSSL file set is complete. 108 # OpenSSL file set is complete.
117 'sources!': [ 109 'sources!': [
118 'ec_private_key_nss.cc', 110 'ec_private_key_nss.cc',
119 'ec_signature_creator_nss.cc', 111 'ec_signature_creator_nss.cc',
120 'encryptor_nss.cc', 112 'encryptor_nss.cc',
121 'hmac_nss.cc', 113 'hmac_nss.cc',
122 'nss_util.cc', 114 'nss_util.cc',
123 'nss_util.h', 115 'nss_util.h',
124 'openpgp_symmetric_encryption.cc', 116 'openpgp_symmetric_encryption.cc',
(...skipping 133 matching lines...) Expand 10 before | Expand all | Expand 10 after
258 'configurations': { 250 'configurations': {
259 'Common_Base': { 251 'Common_Base': {
260 'msvs_target_platform': 'x64', 252 'msvs_target_platform': 'x64',
261 }, 253 },
262 }, 254 },
263 }, 255 },
264 ], 256 ],
265 }], 257 }],
266 ], 258 ],
267 } 259 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698