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

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: Initial implementation of SHA1 for NSS. Created 7 years, 5 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_impl.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 '../net/net.gyp:net', 8 '../net/net.gyp:net',
9 '../skia/skia.gyp:skia', 9 '../skia/skia.gyp:skia',
10 '../third_party/WebKit/public/blink.gyp:blink', 10 '../third_party/WebKit/public/blink.gyp:blink',
(...skipping 576 matching lines...) Expand 10 before | Expand all | Expand 10 after
587 ], 587 ],
588 }, { # enable_plugins==0 588 }, { # enable_plugins==0
589 'sources/': [ 589 'sources/': [
590 ['exclude', '^renderer/pepper/'], 590 ['exclude', '^renderer/pepper/'],
591 ], 591 ],
592 'sources!': [ 592 'sources!': [
593 'renderer/render_widget_fullscreen_pepper.cc', 593 'renderer/render_widget_fullscreen_pepper.cc',
594 'renderer/render_widget_fullscreen_pepper.h', 594 'renderer/render_widget_fullscreen_pepper.h',
595 ], 595 ],
596 }], 596 }],
597 # TODO(bryaneyler): Add OpenSSL implementation.
598 ['use_nss==1', {
599 'sources': [
600 'renderer/webcrypto_sha_digest_nss.cc',
601 ],
602 }],
597 ], 603 ],
598 'target_conditions': [ 604 'target_conditions': [
599 ['OS=="android"', { 605 ['OS=="android"', {
600 'sources/': [ 606 'sources/': [
601 ['include', '^renderer/render_view_linux\\.cc$'], 607 ['include', '^renderer/render_view_linux\\.cc$'],
602 ], 608 ],
603 }], 609 }],
604 ], 610 ],
605 } 611 }
OLDNEW
« no previous file with comments | « no previous file | content/content_tests.gypi » ('j') | content/renderer/webcrypto_impl.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698