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

Side by Side Diff: chrome/chrome_tests_unit.gypi

Issue 102993002: Implement Networking Private API VerifyAndEncryptCredentials method (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Sync to r254157 Created 6 years, 9 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 390 matching lines...) Expand 10 before | Expand all | Expand 10 after
401 ['use_aura==1', { 401 ['use_aura==1', {
402 'dependencies': [ 402 'dependencies': [
403 '../win8/win8.gyp:test_registrar_constants', 403 '../win8/win8.gyp:test_registrar_constants',
404 '../win8/win8.gyp:test_support_win8', 404 '../win8/win8.gyp:test_support_win8',
405 ], 405 ],
406 }], 406 }],
407 ], 407 ],
408 }], 408 }],
409 ['OS=="win" or OS=="mac"', { 409 ['OS=="win" or OS=="mac"', {
410 'sources': [ 410 'sources': [
411 'common/extensions/api/networking_private/networking_private_crypto_ unittest.cc',
411 'common/media_galleries/picasa_test_util.cc', 412 'common/media_galleries/picasa_test_util.cc',
412 'common/media_galleries/picasa_test_util.cc', 413 'common/media_galleries/picasa_test_util.cc',
413 'common/media_galleries/pmp_test_util.cc', 414 'common/media_galleries/pmp_test_util.cc',
414 'common/media_galleries/pmp_test_util.h', 415 'common/media_galleries/pmp_test_util.h',
415 ], 416 ],
416 }], 417 }],
417 ['OS=="mac"', { 418 ['OS=="mac"', {
418 'dependencies': [ 419 'dependencies': [
419 '../components/components.gyp:breakpad_stubs', 420 '../components/components.gyp:breakpad_stubs',
420 ], 421 ],
(...skipping 2063 matching lines...) Expand 10 before | Expand all | Expand 10 after
2484 ['win_use_allocator_shim==1', { 2485 ['win_use_allocator_shim==1', {
2485 'dependencies': [ 2486 'dependencies': [
2486 '<(allocator_target)', 2487 '<(allocator_target)',
2487 ], 2488 ],
2488 }], 2489 }],
2489 ], 2490 ],
2490 'include_dirs': [ 2491 'include_dirs': [
2491 '<(DEPTH)/third_party/wtl/include', 2492 '<(DEPTH)/third_party/wtl/include',
2492 ], 2493 ],
2493 'sources': [ 2494 'sources': [
2494 'browser/extensions/api/networking_private/networking_private_crypto _unittest.cc',
2495 # TODO: It would be nice to have these pulled in 2495 # TODO: It would be nice to have these pulled in
2496 # automatically from direct_dependent_settings in 2496 # automatically from direct_dependent_settings in
2497 # their various targets (net.gyp:net_resources, etc.), 2497 # their various targets (net.gyp:net_resources, etc.),
2498 # but that causes errors in other targets when 2498 # but that causes errors in other targets when
2499 # resulting .res files get referenced multiple times. 2499 # resulting .res files get referenced multiple times.
2500 '<(SHARED_INTERMEDIATE_DIR)/chrome_version/other_version.rc', 2500 '<(SHARED_INTERMEDIATE_DIR)/chrome_version/other_version.rc',
2501 '<(SHARED_INTERMEDIATE_DIR)/installer_util_strings/installer_util_st rings.rc', 2501 '<(SHARED_INTERMEDIATE_DIR)/installer_util_strings/installer_util_st rings.rc',
2502 '<(SHARED_INTERMEDIATE_DIR)/ui/ui_resources/ui_unscaled_resources.rc ', 2502 '<(SHARED_INTERMEDIATE_DIR)/ui/ui_resources/ui_unscaled_resources.rc ',
2503 ], 2503 ],
2504 'link_settings': { 2504 'link_settings': {
(...skipping 190 matching lines...) Expand 10 before | Expand all | Expand 10 after
2695 ], 2695 ],
2696 }], 2696 }],
2697 ['use_nss==0 and use_openssl==0', { 2697 ['use_nss==0 and use_openssl==0', {
2698 'sources!': [ 2698 'sources!': [
2699 'common/net/x509_certificate_model_unittest.cc', 2699 'common/net/x509_certificate_model_unittest.cc',
2700 ], 2700 ],
2701 }], 2701 }],
2702 ['use_openssl==1', { 2702 ['use_openssl==1', {
2703 'sources!': [ 2703 'sources!': [
2704 # networking_private_crypto.cc uses NSS functions. 2704 # networking_private_crypto.cc uses NSS functions.
2705 'browser/extensions/api/networking_private/networking_private_crypto _unittest.cc', 2705 'common/extensions/api/networking_private/networking_private_crypto_ unittest.cc',
2706 ], 2706 ],
2707 'sources/': [ 2707 'sources/': [
2708 # OpenSSL build does not support firefox importer. See 2708 # OpenSSL build does not support firefox importer. See
2709 # http://crbug.com/64926 2709 # http://crbug.com/64926
2710 ['exclude', '^browser/importer/'], 2710 ['exclude', '^browser/importer/'],
2711 ], 2711 ],
2712 }], 2712 }],
2713 ['enable_managed_users!=1', { 2713 ['enable_managed_users!=1', {
2714 'sources/': [ 2714 'sources/': [
2715 ['exclude', '^browser/managed_mode/'], 2715 ['exclude', '^browser/managed_mode/'],
(...skipping 192 matching lines...) Expand 10 before | Expand all | Expand 10 after
2908 'browser/ui/app_list/test/fake_profile_store.h', 2908 'browser/ui/app_list/test/fake_profile_store.h',
2909 'browser/ui/app_list/test/fast_show_pickler_unittest.cc', 2909 'browser/ui/app_list/test/fast_show_pickler_unittest.cc',
2910 'browser/ui/views/app_list/linux/app_list_linux_unittest.cc', 2910 'browser/ui/views/app_list/linux/app_list_linux_unittest.cc',
2911 'browser/ui/views/app_list/win/app_list_win_unittest.cc', 2911 'browser/ui/views/app_list/win/app_list_win_unittest.cc',
2912 ], 2912 ],
2913 }, 2913 },
2914 ], 2914 ],
2915 }], 2915 }],
2916 ], # 'conditions' 2916 ], # 'conditions'
2917 } 2917 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698