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

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: Fix Mac compilation error, apply cl format. 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 2060 matching lines...) Expand 10 before | Expand all | Expand 10 after
2481 ['win_use_allocator_shim==1', { 2482 ['win_use_allocator_shim==1', {
2482 'dependencies': [ 2483 'dependencies': [
2483 '<(allocator_target)', 2484 '<(allocator_target)',
2484 ], 2485 ],
2485 }], 2486 }],
2486 ], 2487 ],
2487 'include_dirs': [ 2488 'include_dirs': [
2488 '<(DEPTH)/third_party/wtl/include', 2489 '<(DEPTH)/third_party/wtl/include',
2489 ], 2490 ],
2490 'sources': [ 2491 'sources': [
2491 'browser/extensions/api/networking_private/networking_private_crypto _unittest.cc',
2492 # TODO: It would be nice to have these pulled in 2492 # TODO: It would be nice to have these pulled in
2493 # automatically from direct_dependent_settings in 2493 # automatically from direct_dependent_settings in
2494 # their various targets (net.gyp:net_resources, etc.), 2494 # their various targets (net.gyp:net_resources, etc.),
2495 # but that causes errors in other targets when 2495 # but that causes errors in other targets when
2496 # resulting .res files get referenced multiple times. 2496 # resulting .res files get referenced multiple times.
2497 '<(SHARED_INTERMEDIATE_DIR)/chrome_version/other_version.rc', 2497 '<(SHARED_INTERMEDIATE_DIR)/chrome_version/other_version.rc',
2498 '<(SHARED_INTERMEDIATE_DIR)/installer_util_strings/installer_util_st rings.rc', 2498 '<(SHARED_INTERMEDIATE_DIR)/installer_util_strings/installer_util_st rings.rc',
2499 '<(SHARED_INTERMEDIATE_DIR)/ui/ui_resources/ui_unscaled_resources.rc ', 2499 '<(SHARED_INTERMEDIATE_DIR)/ui/ui_resources/ui_unscaled_resources.rc ',
2500 ], 2500 ],
2501 'link_settings': { 2501 'link_settings': {
(...skipping 190 matching lines...) Expand 10 before | Expand all | Expand 10 after
2692 ], 2692 ],
2693 }], 2693 }],
2694 ['use_nss==0 and use_openssl==0', { 2694 ['use_nss==0 and use_openssl==0', {
2695 'sources!': [ 2695 'sources!': [
2696 'common/net/x509_certificate_model_unittest.cc', 2696 'common/net/x509_certificate_model_unittest.cc',
2697 ], 2697 ],
2698 }], 2698 }],
2699 ['use_openssl==1', { 2699 ['use_openssl==1', {
2700 'sources!': [ 2700 'sources!': [
2701 # networking_private_crypto.cc uses NSS functions. 2701 # networking_private_crypto.cc uses NSS functions.
2702 'browser/extensions/api/networking_private/networking_private_crypto _unittest.cc', 2702 'common/extensions/api/networking_private/networking_private_crypto_ unittest.cc',
2703 ], 2703 ],
2704 'sources/': [ 2704 'sources/': [
2705 # OpenSSL build does not support firefox importer. See 2705 # OpenSSL build does not support firefox importer. See
2706 # http://crbug.com/64926 2706 # http://crbug.com/64926
2707 ['exclude', '^browser/importer/'], 2707 ['exclude', '^browser/importer/'],
2708 ], 2708 ],
2709 }], 2709 }],
2710 ['enable_managed_users!=1', { 2710 ['enable_managed_users!=1', {
2711 'sources/': [ 2711 'sources/': [
2712 ['exclude', '^browser/managed_mode/'], 2712 ['exclude', '^browser/managed_mode/'],
(...skipping 192 matching lines...) Expand 10 before | Expand all | Expand 10 after
2905 'browser/ui/app_list/test/fake_profile_store.h', 2905 'browser/ui/app_list/test/fake_profile_store.h',
2906 'browser/ui/app_list/test/fast_show_pickler_unittest.cc', 2906 'browser/ui/app_list/test/fast_show_pickler_unittest.cc',
2907 'browser/ui/views/app_list/linux/app_list_linux_unittest.cc', 2907 'browser/ui/views/app_list/linux/app_list_linux_unittest.cc',
2908 'browser/ui/views/app_list/win/app_list_win_unittest.cc', 2908 'browser/ui/views/app_list/win/app_list_win_unittest.cc',
2909 ], 2909 ],
2910 }, 2910 },
2911 ], 2911 ],
2912 }], 2912 }],
2913 ], # 'conditions' 2913 ], # 'conditions'
2914 } 2914 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698