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

Side by Side Diff: content/content_renderer.gypi

Issue 19757011: WebCrypto: Implement digest() using NSS (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 7 years, 4 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 | « no previous file | content/content_tests.gypi » ('j') | content/renderer/webcrypto_sha_digest_nss.cc » ('J')
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 'dependencies': [ 6 'dependencies': [
7 '../jingle/jingle.gyp:jingle_glue', 7 '../jingle/jingle.gyp:jingle_glue',
8 '../media/media.gyp:media', 8 '../media/media.gyp:media',
9 '../net/net.gyp:net', 9 '../net/net.gyp:net',
10 '../skia/skia.gyp:skia', 10 '../skia/skia.gyp:skia',
(...skipping 682 matching lines...) Expand 10 before | Expand all | Expand 10 after
693 'renderer/media/crypto/ppapi_decryptor.h', 693 'renderer/media/crypto/ppapi_decryptor.h',
694 ], 694 ],
695 }], 695 }],
696 ['enable_gpu!=1', { 696 ['enable_gpu!=1', {
697 'sources!': [ 697 'sources!': [
698 'renderer/pepper/ppb_graphics_3d_impl.cc', 698 'renderer/pepper/ppb_graphics_3d_impl.cc',
699 'renderer/pepper/ppb_graphics_3d_impl.h', 699 'renderer/pepper/ppb_graphics_3d_impl.h',
700 'renderer/pepper/ppb_open_gl_es_impl.cc', 700 'renderer/pepper/ppb_open_gl_es_impl.cc',
701 ], 701 ],
702 }], 702 }],
703 # TODO(bryaneyler): Add OpenSSL implementation.
704 ['use_nss==1', {
705 'sources': [
706 'renderer/webcrypto_sha_digest_nss.cc',
707 ],
708 }],
703 ], 709 ],
704 'target_conditions': [ 710 'target_conditions': [
705 ['OS=="android"', { 711 ['OS=="android"', {
706 'sources/': [ 712 'sources/': [
707 ['include', '^renderer/render_view_linux\\.cc$'], 713 ['include', '^renderer/render_view_linux\\.cc$'],
708 ], 714 ],
709 }], 715 }],
710 ], 716 ],
711 } 717 }
OLDNEW
« no previous file with comments | « no previous file | content/content_tests.gypi » ('j') | content/renderer/webcrypto_sha_digest_nss.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698