OLD | NEW |
1 # Copyright 2012 The Chromium Authors. All rights reserved. | 1 # Copyright 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 'targets': [ | 5 'targets': [ |
6 { | 6 { |
7 # This target contains mocks and test utilities that don't belong in | 7 # This target contains mocks and test utilities that don't belong in |
8 # production libraries but are used by more than one test executable. | 8 # production libraries but are used by more than one test executable. |
9 'target_name': 'test_support_common', | 9 'target_name': 'test_support_common', |
10 'type': 'static_library', | 10 'type': 'static_library', |
(...skipping 2601 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2612 ['exclude', '^browser/ui/views/'], | 2612 ['exclude', '^browser/ui/views/'], |
2613 ['exclude', '^../ui/views/'], | 2613 ['exclude', '^../ui/views/'], |
2614 ], | 2614 ], |
2615 }], | 2615 }], |
2616 ['use_nss==0 and use_openssl==0', { | 2616 ['use_nss==0 and use_openssl==0', { |
2617 'sources!': [ | 2617 'sources!': [ |
2618 'common/net/x509_certificate_model_unittest.cc', | 2618 'common/net/x509_certificate_model_unittest.cc', |
2619 ], | 2619 ], |
2620 }], | 2620 }], |
2621 ['use_openssl==1', { | 2621 ['use_openssl==1', { |
| 2622 'sources!': [ |
| 2623 # networking_private_crypto.cc uses NSS functions. |
| 2624 'browser/extensions/api/networking_private/networking_private_crypto
_unittest.cc', |
| 2625 ], |
2622 'sources/': [ | 2626 'sources/': [ |
2623 # OpenSSL build does not support firefox importer. See | 2627 # OpenSSL build does not support firefox importer. See |
2624 # http://crbug.com/64926 | 2628 # http://crbug.com/64926 |
2625 ['exclude', '^browser/importer/'], | 2629 ['exclude', '^browser/importer/'], |
2626 ], | 2630 ], |
2627 }], | 2631 }], |
2628 ['enable_managed_users!=1', { | 2632 ['enable_managed_users!=1', { |
2629 'sources/': [ | 2633 'sources/': [ |
2630 ['exclude', '^browser/managed_mode/'], | 2634 ['exclude', '^browser/managed_mode/'], |
2631 ], | 2635 ], |
(...skipping 139 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2771 # more details. | 2775 # more details. |
2772 'DebugInformationFormat': '3', | 2776 'DebugInformationFormat': '3', |
2773 'ProgramDataBaseFileName': '<(PRODUCT_DIR)/unit_tests.exe.pdb', | 2777 'ProgramDataBaseFileName': '<(PRODUCT_DIR)/unit_tests.exe.pdb', |
2774 }, | 2778 }, |
2775 }, | 2779 }, |
2776 }, | 2780 }, |
2777 ], | 2781 ], |
2778 }], | 2782 }], |
2779 ], # 'conditions' | 2783 ], # 'conditions' |
2780 } | 2784 } |
OLD | NEW |