OLD | NEW |
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 'dependencies': [ | 6 'dependencies': [ |
7 '../base/base.gyp:base', | 7 '../base/base.gyp:base', |
8 '../components/tracing.gyp:tracing', | 8 '../components/tracing.gyp:tracing', |
9 '../skia/skia.gyp:skia', | 9 '../skia/skia.gyp:skia', |
10 '../ui/gfx/gfx.gyp:gfx', | 10 '../ui/gfx/gfx.gyp:gfx', |
(...skipping 147 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
158 'child/web_discardable_memory_impl.cc', | 158 'child/web_discardable_memory_impl.cc', |
159 'child/web_discardable_memory_impl.h', | 159 'child/web_discardable_memory_impl.h', |
160 'child/web_socket_stream_handle_bridge.h', | 160 'child/web_socket_stream_handle_bridge.h', |
161 'child/web_socket_stream_handle_delegate.h', | 161 'child/web_socket_stream_handle_delegate.h', |
162 'child/web_socket_stream_handle_impl.cc', | 162 'child/web_socket_stream_handle_impl.cc', |
163 'child/web_socket_stream_handle_impl.h', | 163 'child/web_socket_stream_handle_impl.h', |
164 'child/web_url_loader_impl.cc', | 164 'child/web_url_loader_impl.cc', |
165 'child/web_url_loader_impl.h', | 165 'child/web_url_loader_impl.h', |
166 'child/webblobregistry_impl.cc', | 166 'child/webblobregistry_impl.cc', |
167 'child/webblobregistry_impl.h', | 167 'child/webblobregistry_impl.h', |
| 168 'child/webcrypto/crypto_data.cc', |
| 169 'child/webcrypto/crypto_data.h', |
| 170 'child/webcrypto/jwk.cc', |
| 171 'child/webcrypto/platform_crypto.h', |
| 172 'child/webcrypto/platform_crypto_nss.cc', |
| 173 'child/webcrypto/platform_crypto_openssl.cc', |
| 174 'child/webcrypto/shared_crypto.cc', |
| 175 'child/webcrypto/shared_crypto.h', |
| 176 'child/webcrypto/webcrypto_impl.cc', |
| 177 'child/webcrypto/webcrypto_impl.h', |
| 178 'child/webcrypto/webcrypto_util.cc', |
| 179 'child/webcrypto/webcrypto_util.h', |
168 'child/webfallbackthemeengine_impl.cc', | 180 'child/webfallbackthemeengine_impl.cc', |
169 'child/webfallbackthemeengine_impl.h', | 181 'child/webfallbackthemeengine_impl.h', |
170 'child/webfileutilities_impl.cc', | 182 'child/webfileutilities_impl.cc', |
171 'child/webfileutilities_impl.h', | 183 'child/webfileutilities_impl.h', |
172 'child/webkitplatformsupport_child_impl.cc', | 184 'child/webkitplatformsupport_child_impl.cc', |
173 'child/webkitplatformsupport_child_impl.h', | 185 'child/webkitplatformsupport_child_impl.h', |
174 'child/webkitplatformsupport_impl.cc', | 186 'child/webkitplatformsupport_impl.cc', |
175 'child/webkitplatformsupport_impl.h', | 187 'child/webkitplatformsupport_impl.h', |
176 'child/webmessageportchannel_impl.cc', | 188 'child/webmessageportchannel_impl.cc', |
177 'child/webmessageportchannel_impl.h', | 189 'child/webmessageportchannel_impl.h', |
(...skipping 57 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
235 ['use_aura==1', { | 247 ['use_aura==1', { |
236 'sources!': [ | 248 'sources!': [ |
237 'child/npapi/webplugin_delegate_impl_mac.mm', | 249 'child/npapi/webplugin_delegate_impl_mac.mm', |
238 ], | 250 ], |
239 }], | 251 }], |
240 ['OS=="win"', { | 252 ['OS=="win"', { |
241 'sources!': [ | 253 'sources!': [ |
242 'child/npapi/webplugin_delegate_impl_aura.cc', | 254 'child/npapi/webplugin_delegate_impl_aura.cc', |
243 ], | 255 ], |
244 }], | 256 }], |
| 257 ['use_openssl==1', { |
| 258 'sources!': [ |
| 259 'child/webcrypto/platform_crypto_nss.cc', |
| 260 ], |
| 261 'dependencies': [ |
| 262 '../third_party/openssl/openssl.gyp:openssl', |
| 263 ], |
| 264 }, { |
| 265 'sources!': [ |
| 266 'child/webcrypto/platform_crypto_openssl.cc', |
| 267 ], |
| 268 'conditions': [ |
| 269 ['os_posix == 1 and OS != "mac" and OS != "ios" and OS != "android"', { |
| 270 'dependencies': [ |
| 271 '../build/linux/system.gyp:ssl', |
| 272 ], |
| 273 }, { |
| 274 'dependencies': [ |
| 275 '../third_party/nss/nss.gyp:nspr', |
| 276 '../third_party/nss/nss.gyp:nss', |
| 277 ], |
| 278 }], |
| 279 ], |
| 280 }], |
245 ], | 281 ], |
246 } | 282 } |
OLD | NEW |