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