OLD | NEW |
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 Loading... |
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 Loading... |
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 } |
OLD | NEW |