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

Side by Side Diff: chrome/chrome_tests_unit.gypi

Issue 396463004: Implement NetworkingPrivateCrypto for OpenSSL. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rsleevi comments Created 6 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 | Annotate | Revision Log
OLDNEW
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 389 matching lines...) Expand 10 before | Expand all | Expand 10 after
400 ['use_aura==1', { 400 ['use_aura==1', {
401 'dependencies': [ 401 'dependencies': [
402 '../win8/win8.gyp:test_registrar_constants', 402 '../win8/win8.gyp:test_registrar_constants',
403 '../win8/win8.gyp:test_support_win8', 403 '../win8/win8.gyp:test_support_win8',
404 ], 404 ],
405 }], 405 }],
406 ], 406 ],
407 }], 407 }],
408 ['OS=="win" or OS=="mac"', { 408 ['OS=="win" or OS=="mac"', {
409 'sources': [ 409 'sources': [
410 'common/extensions/api/networking_private/networking_private_crypto_ unittest.cc',
411 'common/media_galleries/picasa_test_util.cc', 410 'common/media_galleries/picasa_test_util.cc',
412 'common/media_galleries/picasa_test_util.cc', 411 'common/media_galleries/picasa_test_util.cc',
413 'common/media_galleries/pmp_test_util.cc', 412 'common/media_galleries/pmp_test_util.cc',
414 'common/media_galleries/pmp_test_util.h', 413 'common/media_galleries/pmp_test_util.h',
415 ], 414 ],
416 }], 415 }],
417 ['OS=="mac"', { 416 ['OS=="mac"', {
418 'dependencies': [ 417 'dependencies': [
419 '../breakpad/breakpad.gyp:breakpad', 418 '../breakpad/breakpad.gyp:breakpad',
420 '../components/components.gyp:breakpad_component', 419 '../components/components.gyp:breakpad_component',
(...skipping 2047 matching lines...) Expand 10 before | Expand all | Expand 10 after
2468 }], 2467 }],
2469 ['OS!="win" and OS!="mac"', { 2468 ['OS!="win" and OS!="mac"', {
2470 'sources!': [ 2469 'sources!': [
2471 '../skia/ext/platform_canvas_unittest.cc', 2470 '../skia/ext/platform_canvas_unittest.cc',
2472 ], 2471 ],
2473 }], 2472 }],
2474 ['OS=="win" or OS=="mac"', { 2473 ['OS=="win" or OS=="mac"', {
2475 'sources': [ 2474 'sources': [
2476 'browser/media_galleries/fileapi/itunes_file_util_unittest.cc', 2475 'browser/media_galleries/fileapi/itunes_file_util_unittest.cc',
2477 'browser/media_galleries/fileapi/picasa_file_util_unittest.cc', 2476 'browser/media_galleries/fileapi/picasa_file_util_unittest.cc',
2477 'common/extensions/api/networking_private/networking_private_crypto_ unittest.cc',
2478 'utility/media_galleries/itunes_library_parser_unittest.cc', 2478 'utility/media_galleries/itunes_library_parser_unittest.cc',
2479 'utility/media_galleries/picasa_album_table_reader_unittest.cc', 2479 'utility/media_galleries/picasa_album_table_reader_unittest.cc',
2480 'utility/media_galleries/picasa_albums_indexer_unittest.cc', 2480 'utility/media_galleries/picasa_albums_indexer_unittest.cc',
2481 'utility/media_galleries/pmp_column_reader_unittest.cc', 2481 'utility/media_galleries/pmp_column_reader_unittest.cc',
2482 ], 2482 ],
2483 }], 2483 }],
2484 ['OS=="mac"', { 2484 ['OS=="mac"', {
2485 'sources': [ 2485 'sources': [
2486 'browser/media_galleries/fileapi/iphoto_file_util_unittest.cc', 2486 'browser/media_galleries/fileapi/iphoto_file_util_unittest.cc',
2487 'utility/media_galleries/iphoto_library_parser_unittest.cc', 2487 'utility/media_galleries/iphoto_library_parser_unittest.cc',
(...skipping 247 matching lines...) Expand 10 before | Expand all | Expand 10 after
2735 ['exclude', '^../apps/ui/views/'], 2735 ['exclude', '^../apps/ui/views/'],
2736 ['exclude', '^../ui/views/'], 2736 ['exclude', '^../ui/views/'],
2737 ], 2737 ],
2738 }], 2738 }],
2739 ['use_nss==0 and use_openssl==0', { 2739 ['use_nss==0 and use_openssl==0', {
2740 'sources!': [ 2740 'sources!': [
2741 'common/net/x509_certificate_model_unittest.cc', 2741 'common/net/x509_certificate_model_unittest.cc',
2742 ], 2742 ],
2743 }], 2743 }],
2744 ['use_openssl==1', { 2744 ['use_openssl==1', {
2745 'sources!': [
2746 # networking_private_crypto.cc uses NSS functions.
2747 'common/extensions/api/networking_private/networking_private_crypto_ unittest.cc',
2748 ],
2749 'sources/': [ 2745 'sources/': [
2750 # OpenSSL build does not support firefox importer. See 2746 # OpenSSL build does not support firefox importer. See
2751 # http://crbug.com/64926 2747 # http://crbug.com/64926
2752 ['exclude', '^browser/importer/'], 2748 ['exclude', '^browser/importer/'],
2753 ], 2749 ],
2754 }], 2750 }],
2755 ['enable_managed_users!=1', { 2751 ['enable_managed_users!=1', {
2756 'sources/': [ 2752 'sources/': [
2757 ['exclude', '^browser/managed_mode/'], 2753 ['exclude', '^browser/managed_mode/'],
2758 ], 2754 ],
(...skipping 159 matching lines...) Expand 10 before | Expand all | Expand 10 after
2918 'unit_tests.isolate', 2914 'unit_tests.isolate',
2919 ], 2915 ],
2920 'sources': [ 2916 'sources': [
2921 'unit_tests.isolate', 2917 'unit_tests.isolate',
2922 ], 2918 ],
2923 }, 2919 },
2924 ], 2920 ],
2925 }], 2921 }],
2926 ], # 'conditions' 2922 ], # 'conditions'
2927 } 2923 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698