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

Side by Side Diff: components/components_tests.gyp

Issue 533493004: Credential Manager: Refactor password_manager::CredentialManagerClient. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Explicit. Created 6 years, 3 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
« no previous file with comments | « chrome/renderer/chrome_content_renderer_client.cc ('k') | components/password_manager.gypi » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright 2014 The Chromium Authors. All rights reserved. 1 # Copyright 2014 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 'variables': { 6 'variables': {
7 # This turns on e.g. the filename-based detection of which 7 # This turns on e.g. the filename-based detection of which
8 # platforms to include source files on (e.g. files ending in 8 # platforms to include source files on (e.g. files ending in
9 # _mac.h or _mac.cc are only compiled on MacOSX). 9 # _mac.h or _mac.cc are only compiled on MacOSX).
10 'chromium_code': 1, 10 'chromium_code': 1,
(...skipping 414 matching lines...) Expand 10 before | Expand all | Expand 10 after
425 'conditions': [ 425 'conditions': [
426 ['toolkit_views == 1', { 426 ['toolkit_views == 1', {
427 'sources': [ 427 'sources': [
428 'bookmarks/browser/bookmark_node_data_unittest.cc', 428 'bookmarks/browser/bookmark_node_data_unittest.cc',
429 ], 429 ],
430 }], 430 }],
431 ['OS != "ios"', { 431 ['OS != "ios"', {
432 'sources': [ 432 'sources': [
433 'autofill/content/renderer/renderer_save_password_progress_logge r_unittest.cc', 433 'autofill/content/renderer/renderer_save_password_progress_logge r_unittest.cc',
434 'dom_distiller/content/dom_distiller_viewer_source_unittest.cc', 434 'dom_distiller/content/dom_distiller_viewer_source_unittest.cc',
435 'password_manager/content/renderer/credential_manager_client_uni ttest.cc',
436 'power/origin_power_map_unittest.cc', 435 'power/origin_power_map_unittest.cc',
437 'usb_service/usb_context_unittest.cc', 436 'usb_service/usb_context_unittest.cc',
438 'usb_service/usb_device_filter_unittest.cc', 437 'usb_service/usb_device_filter_unittest.cc',
439 ], 438 ],
440 'dependencies': [ 439 'dependencies': [
441 # Dependencies of autofill 440 # Dependencies of autofill
442 'components.gyp:autofill_content_browser', 441 'components.gyp:autofill_content_browser',
443 'components.gyp:autofill_content_renderer', 442 'components.gyp:autofill_content_renderer',
444 'components.gyp:autofill_content_test_support', 443 'components.gyp:autofill_content_test_support',
445 444
446 # Dependencies of component_updater 445 # Dependencies of component_updater
447 'components.gyp:component_updater', 446 'components.gyp:component_updater',
448 'components.gyp:component_updater_test_support', 447 'components.gyp:component_updater_test_support',
449 '../third_party/libxml/libxml.gyp:libxml', 448 '../third_party/libxml/libxml.gyp:libxml',
450 449
451 # Dependencies of dom_distiller 450 # Dependencies of dom_distiller
452 'components.gyp:dom_distiller_content', 451 'components.gyp:dom_distiller_content',
453 452
454 # Dependencies of 453 # Dependencies of
455 # intercept_navigation_resource_throttle_unittest.cc 454 # intercept_navigation_resource_throttle_unittest.cc
456 '../skia/skia.gyp:skia', 455 '../skia/skia.gyp:skia',
457 'components.gyp:navigation_interception', 456 'components.gyp:navigation_interception',
458 457
459 # Dependencies of keyed_service 458 # Dependencies of keyed_service
460 'components.gyp:keyed_service_content', 459 'components.gyp:keyed_service_content',
461 460
462 # Dependencies of precache/content 461 # Dependencies of precache/content
463 'components.gyp:precache_content', 462 'components.gyp:precache_content',
464 463
465 # Dependencies of password_manager
466 'components.gyp:password_manager_content_renderer',
467 'components.gyp:password_manager_content_renderer_test_support',
468
469 # Dependencies of power 464 # Dependencies of power
470 'components.gyp:power', 465 'components.gyp:power',
471 466
472 # Dependencies of sessions 467 # Dependencies of sessions
473 '../third_party/protobuf/protobuf.gyp:protobuf_lite', 468 '../third_party/protobuf/protobuf.gyp:protobuf_lite',
474 'components.gyp:sessions', 469 'components.gyp:sessions',
475 'components.gyp:sessions_test_support', 470 'components.gyp:sessions_test_support',
476 471
477 # Dependencies of storage monitor 472 # Dependencies of storage monitor
478 'components.gyp:storage_monitor', 473 'components.gyp:storage_monitor',
(...skipping 359 matching lines...) Expand 10 before | Expand all | Expand 10 after
838 ['OS!="ios"', { 833 ['OS!="ios"', {
839 'targets': [ 834 'targets': [
840 { 835 {
841 'target_name': 'components_browsertests', 836 'target_name': 'components_browsertests',
842 'type': '<(gtest_target_type)', 837 'type': '<(gtest_target_type)',
843 'defines!': ['CONTENT_IMPLEMENTATION'], 838 'defines!': ['CONTENT_IMPLEMENTATION'],
844 'dependencies': [ 839 'dependencies': [
845 'components.gyp:autofill_content_browser', 840 'components.gyp:autofill_content_browser',
846 'components.gyp:dom_distiller_content', 841 'components.gyp:dom_distiller_content',
847 'components.gyp:dom_distiller_core', 842 'components.gyp:dom_distiller_core',
843 'components.gyp:password_manager_content_renderer',
848 'components.gyp:pref_registry_test_support', 844 'components.gyp:pref_registry_test_support',
849 'components_resources.gyp:components_resources', 845 'components_resources.gyp:components_resources',
850 '../content/content.gyp:content_common', 846 '../content/content.gyp:content_common',
851 '../content/content.gyp:content_gpu', 847 '../content/content.gyp:content_gpu',
852 '../content/content.gyp:content_plugin', 848 '../content/content.gyp:content_plugin',
853 '../content/content.gyp:content_renderer', 849 '../content/content.gyp:content_renderer',
854 '../content/content_shell_and_tests.gyp:content_browser_test_support ', 850 '../content/content_shell_and_tests.gyp:content_browser_test_support ',
855 '../content/content_shell_and_tests.gyp:content_shell_lib', 851 '../content/content_shell_and_tests.gyp:content_shell_lib',
856 '../content/content_shell_and_tests.gyp:content_shell_pak', 852 '../content/content_shell_and_tests.gyp:content_shell_pak',
857 '../content/content_shell_and_tests.gyp:test_support_content', 853 '../content/content_shell_and_tests.gyp:test_support_content',
858 '../skia/skia.gyp:skia', 854 '../skia/skia.gyp:skia',
859 '../testing/gmock.gyp:gmock', 855 '../testing/gmock.gyp:gmock',
860 '../testing/gtest.gyp:gtest', 856 '../testing/gtest.gyp:gtest',
861 ], 857 ],
862 'include_dirs': [ 858 'include_dirs': [
863 '..', 859 '..',
864 ], 860 ],
865 'defines': [ 861 'defines': [
866 'HAS_OUT_OF_PROC_TEST_RUNNER', 862 'HAS_OUT_OF_PROC_TEST_RUNNER',
867 ], 863 ],
868 'sources': [ 864 'sources': [
869 'autofill/content/browser/risk/fingerprint_browsertest.cc', 865 'autofill/content/browser/risk/fingerprint_browsertest.cc',
870 'dom_distiller/content/distiller_page_web_contents_browsertest.cc', 866 'dom_distiller/content/distiller_page_web_contents_browsertest.cc',
867 'password_manager/content/renderer/credential_manager_client_browser test.cc',
871 ], 868 ],
872 'actions': [ 869 'actions': [
873 { 870 {
874 'action_name': 'repack_components_pack', 871 'action_name': 'repack_components_pack',
875 'variables': { 872 'variables': {
876 'pak_inputs': [ 873 'pak_inputs': [
877 '<(SHARED_INTERMEDIATE_DIR)/components/component_resources.pak ', 874 '<(SHARED_INTERMEDIATE_DIR)/components/component_resources.pak ',
878 '<(SHARED_INTERMEDIATE_DIR)/components/strings/components_stri ngs_en-US.pak', 875 '<(SHARED_INTERMEDIATE_DIR)/components/strings/components_stri ngs_en-US.pak',
879 ], 876 ],
880 'pak_output': '<(PRODUCT_DIR)/components_resources.pak', 877 'pak_output': '<(PRODUCT_DIR)/components_resources.pak',
(...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after
936 'dependencies': [ 933 'dependencies': [
937 '../base/allocator/allocator.gyp:allocator', 934 '../base/allocator/allocator.gyp:allocator',
938 ], 935 ],
939 }], 936 }],
940 ], 937 ],
941 }, 938 },
942 ], 939 ],
943 }], 940 }],
944 ], 941 ],
945 } 942 }
OLDNEW
« no previous file with comments | « chrome/renderer/chrome_content_renderer_client.cc ('k') | components/password_manager.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698