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

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, 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_sha_digest.h » ('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 573 matching lines...) Expand 10 before | Expand all | Expand 10 after
584 ], 584 ],
585 }, { # enable_plugins==0 585 }, { # enable_plugins==0
586 'sources/': [ 586 'sources/': [
587 ['exclude', '^renderer/pepper/'], 587 ['exclude', '^renderer/pepper/'],
588 ], 588 ],
589 'sources!': [ 589 'sources!': [
590 'renderer/render_widget_fullscreen_pepper.cc', 590 'renderer/render_widget_fullscreen_pepper.cc',
591 'renderer/render_widget_fullscreen_pepper.h', 591 'renderer/render_widget_fullscreen_pepper.h',
592 ], 592 ],
593 }], 593 }],
594 # TODO(bryaneyler): Add OpenSSL implementation.
595 ['use_nss==1', {
596 'sources': [
597 'renderer/webcrypto_sha_digest_nss.cc',
598 ],
599 }],
594 ], 600 ],
595 'target_conditions': [ 601 'target_conditions': [
596 ['OS=="android"', { 602 ['OS=="android"', {
597 'sources/': [ 603 'sources/': [
598 ['include', '^renderer/render_view_linux\\.cc$'], 604 ['include', '^renderer/render_view_linux\\.cc$'],
599 ], 605 ],
600 }], 606 }],
601 ], 607 ],
602 } 608 }
OLDNEW
« no previous file with comments | « no previous file | content/content_tests.gypi » ('j') | content/renderer/webcrypto_sha_digest.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698