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

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

Powered by Google App Engine
This is Rietveld 408576698