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

Side by Side Diff: content/content_tests.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
OLDNEW
1 # Copyright (c) 2013 The Chromium Authors. All rights reserved. 1 # Copyright (c) 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 'targets': [ 6 'targets': [
7 { 7 {
8 'target_name': 'test_support_content', 8 'target_name': 'test_support_content',
9 'type': 'static_library', 9 'type': 'static_library',
10 'defines!': ['CONTENT_IMPLEMENTATION'], 10 'defines!': ['CONTENT_IMPLEMENTATION'],
(...skipping 715 matching lines...) Expand 10 before | Expand all | Expand 10 after
726 ['OS == "android" and gtest_target_type == "shared_library"', { 726 ['OS == "android" and gtest_target_type == "shared_library"', {
727 'dependencies': [ 727 'dependencies': [
728 '../testing/android/native_test.gyp:native_test_native_code', 728 '../testing/android/native_test.gyp:native_test_native_code',
729 ], 729 ],
730 }], 730 }],
731 ['enable_webrtc==1 and google_tv==1', { 731 ['enable_webrtc==1 and google_tv==1', {
732 'sources': [ 732 'sources': [
733 'renderer/media/rtc_video_decoder_factory_tv_unittest.cc', 733 'renderer/media/rtc_video_decoder_factory_tv_unittest.cc',
734 ], 734 ],
735 }], 735 }],
736 # TODO(bryaneyler): Also enable these for OpenSSL once that
737 # implementation is ready.
738 ['use_nss==1', {
739 'sources': [
740 'renderer/webcrypto_sha_digest_unittest.cc',
741 ],
742 }],
736 ], 743 ],
737 }, 744 },
738 ], 745 ],
739 'conditions': [ 746 'conditions': [
740 ['OS!="ios"', { 747 ['OS!="ios"', {
741 'targets': [ 748 'targets': [
742 { 749 {
743 'target_name': 'content_browsertests', 750 'target_name': 'content_browsertests',
744 'type': '<(gtest_target_type)', 751 'type': '<(gtest_target_type)',
745 'defines!': ['CONTENT_IMPLEMENTATION'], 752 'defines!': ['CONTENT_IMPLEMENTATION'],
(...skipping 646 matching lines...) Expand 10 before | Expand all | Expand 10 after
1392 'files': ['<(PRODUCT_DIR)/libnpapi_test_plugin.so'], 1399 'files': ['<(PRODUCT_DIR)/libnpapi_test_plugin.so'],
1393 }, 1400 },
1394 ], 1401 ],
1395 }], 1402 }],
1396 ], 1403 ],
1397 }, 1404 },
1398 ], 1405 ],
1399 }], 1406 }],
1400 ], 1407 ],
1401 } 1408 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698