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

Side by Side Diff: chrome/chrome_utility.gypi

Issue 881213004: Support building BoringSSL with NSS certificates. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase Created 5 years, 8 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 | « chrome/chrome_common.gypi ('k') | chrome/common/net/BUILD.gn » ('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 2014 The Chromium Authors. All rights reserved. 1 # Copyright 2014 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 'chrome_utility_sources': [ 7 'chrome_utility_sources': [
8 'utility/chrome_content_utility_client.cc', 8 'utility/chrome_content_utility_client.cc',
9 'utility/chrome_content_utility_client.h', 9 'utility/chrome_content_utility_client.h',
10 'utility/chrome_content_utility_ipc_whitelist.cc', 10 'utility/chrome_content_utility_ipc_whitelist.cc',
(...skipping 115 matching lines...) Expand 10 before | Expand all | Expand 10 after
126 'VCLinkerTool': { 126 'VCLinkerTool': {
127 'DelayLoadDLLs': [ 127 'DelayLoadDLLs': [
128 # Prevent wininet from loading in the renderer. 128 # Prevent wininet from loading in the renderer.
129 # http://crbug.com/460679 129 # http://crbug.com/460679
130 'wininet.dll', 130 'wininet.dll',
131 ], 131 ],
132 }, 132 },
133 }, 133 },
134 }, 134 },
135 }], 135 }],
136 ['OS!="win" and OS!="mac" and use_openssl==1', {
137 'sources!': [
138 'utility/importer/nss_decryptor.cc',
139 ]
140 }],
141 ['OS!="win" and OS!="mac" and use_openssl==0', {
142 'dependencies': [
143 '../crypto/crypto.gyp:crypto',
144 ],
145 'sources': [
146 'utility/importer/nss_decryptor_system_nss.cc',
147 'utility/importer/nss_decryptor_system_nss.h',
148 ],
149 }],
150 ['OS!="android"', { 136 ['OS!="android"', {
151 'dependencies': [ 137 'dependencies': [
152 '../net/net.gyp:net_utility_services', 138 '../net/net.gyp:net_utility_services',
153 ], 139 ],
154 'sources': [ 140 'sources': [
155 '<@(chrome_utility_importer_sources)', 141 '<@(chrome_utility_importer_sources)',
156 ], 142 ],
157 }], 143 }],
144 ['use_nss_certs==1', {
145 'dependencies': [
146 '../crypto/crypto.gyp:crypto',
147 ],
148 'sources': [
149 'utility/importer/nss_decryptor_system_nss.cc',
150 'utility/importer/nss_decryptor_system_nss.h',
151 ],
152 }],
158 ['OS=="android" and use_seccomp_bpf==1', { 153 ['OS=="android" and use_seccomp_bpf==1', {
159 'dependencies': [ 154 'dependencies': [
160 '../sandbox/sandbox.gyp:seccomp_bpf', 155 '../sandbox/sandbox.gyp:seccomp_bpf',
161 ], 156 ],
162 'defines': ['USE_SECCOMP_BPF'], 157 'defines': ['USE_SECCOMP_BPF'],
163 }], 158 }],
164 ['enable_extensions==1', { 159 ['enable_extensions==1', {
165 'dependencies': [ 160 'dependencies': [
166 '../extensions/extensions.gyp:extensions_utility', 161 '../extensions/extensions.gyp:extensions_utility',
167 '../third_party/libexif/libexif.gyp:libexif', 162 '../third_party/libexif/libexif.gyp:libexif',
(...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after
205 'utility/local_discovery/service_discovery_message_handler.cc', 200 'utility/local_discovery/service_discovery_message_handler.cc',
206 'utility/local_discovery/service_discovery_message_handler.h', 201 'utility/local_discovery/service_discovery_message_handler.h',
207 ] 202 ]
208 }], 203 }],
209 ], 204 ],
210 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. 205 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
211 'msvs_disabled_warnings': [ 4267, ], 206 'msvs_disabled_warnings': [ 4267, ],
212 }, 207 },
213 ], 208 ],
214 } 209 }
OLDNEW
« no previous file with comments | « chrome/chrome_common.gypi ('k') | chrome/common/net/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698