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

Side by Side Diff: chrome/chrome_tests_unit.gypi

Issue 1620813005: Revert of Move remote_db_manager into the safe_browsing_db component. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 11 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/chrome_tests.gypi ('k') | chrome/test/BUILD.gn » ('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 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 'variables': { 5 'variables': {
6 'chrome_unit_tests_sources': [ 6 'chrome_unit_tests_sources': [
7 # histograms.xml is analyzed by AboutFlagsHistogramTest, so this 7 # histograms.xml is analyzed by AboutFlagsHistogramTest, so this
8 # dependency is needed to make commit bots run unit_tests on 8 # dependency is needed to make commit bots run unit_tests on
9 # histograms.xml changes. 9 # histograms.xml changes.
10 '../tools/metrics/histograms/histograms.xml', 10 '../tools/metrics/histograms/histograms.xml',
(...skipping 749 matching lines...) Expand 10 before | Expand all | Expand 10 after
760 'browser/notifications/platform_notification_service_unittest.cc', 760 'browser/notifications/platform_notification_service_unittest.cc',
761 ], 761 ],
762 # Used by Full Safe Browsing (safe_browsing==1) and Mobile Safe 762 # Used by Full Safe Browsing (safe_browsing==1) and Mobile Safe
763 # Browsing (==2) modes. 763 # Browsing (==2) modes.
764 'chrome_unit_tests_shared_safe_browsing_sources': [ 764 'chrome_unit_tests_shared_safe_browsing_sources': [
765 'browser/safe_browsing/ping_manager_unittest.cc', 765 'browser/safe_browsing/ping_manager_unittest.cc',
766 'browser/safe_browsing/safe_browsing_blocking_page_unittest.cc', 766 'browser/safe_browsing/safe_browsing_blocking_page_unittest.cc',
767 'browser/safe_browsing/threat_details_unittest.cc', 767 'browser/safe_browsing/threat_details_unittest.cc',
768 'browser/safe_browsing/ui_manager_unittest.cc', 768 'browser/safe_browsing/ui_manager_unittest.cc',
769 ], 769 ],
770 'chrome_unit_tests_mobile_safe_browsing_sources': [
771 'browser/safe_browsing/remote_database_manager_unittest.cc',
772 'browser/safe_browsing/safe_browsing_api_handler_unittest.cc',
773 ],
770 'chrome_unit_tests_full_safe_browsing_sources': [ 774 'chrome_unit_tests_full_safe_browsing_sources': [
771 'browser/safe_browsing/browser_feature_extractor_unittest.cc', 775 'browser/safe_browsing/browser_feature_extractor_unittest.cc',
772 'browser/safe_browsing/chunk_range_unittest.cc', 776 'browser/safe_browsing/chunk_range_unittest.cc',
773 'browser/safe_browsing/client_side_detection_host_unittest.cc', 777 'browser/safe_browsing/client_side_detection_host_unittest.cc',
774 'browser/safe_browsing/client_side_detection_service_unittest.cc', 778 'browser/safe_browsing/client_side_detection_service_unittest.cc',
775 'browser/safe_browsing/client_side_model_loader_unittest.cc', 779 'browser/safe_browsing/client_side_model_loader_unittest.cc',
776 'browser/safe_browsing/download_feedback_service_unittest.cc', 780 'browser/safe_browsing/download_feedback_service_unittest.cc',
777 'browser/safe_browsing/download_feedback_unittest.cc', 781 'browser/safe_browsing/download_feedback_unittest.cc',
778 'browser/safe_browsing/download_protection_service_unittest.cc', 782 'browser/safe_browsing/download_protection_service_unittest.cc',
779 'browser/safe_browsing/incident_reporting/binary_integrity_analyzer_mac_un ittest.cc', 783 'browser/safe_browsing/incident_reporting/binary_integrity_analyzer_mac_un ittest.cc',
(...skipping 1717 matching lines...) Expand 10 before | Expand all | Expand 10 after
2497 # TODO(sgurun): enable tests for safe_browsing==2. 2501 # TODO(sgurun): enable tests for safe_browsing==2.
2498 'sources': [ '<@(chrome_unit_tests_full_safe_browsing_sources)', 2502 'sources': [ '<@(chrome_unit_tests_full_safe_browsing_sources)',
2499 '<@(chrome_unit_tests_shared_safe_browsing_sources)', 2503 '<@(chrome_unit_tests_shared_safe_browsing_sources)',
2500 ], 2504 ],
2501 'dependencies': [ 2505 'dependencies': [
2502 '../components/components.gyp:test_database_manager', 2506 '../components/components.gyp:test_database_manager',
2503 'ipc_protobuf_message_test_proto', 2507 'ipc_protobuf_message_test_proto',
2504 ], 2508 ],
2505 }], 2509 }],
2506 ['safe_browsing==2', { 2510 ['safe_browsing==2', {
2507 'sources': [ '<@(chrome_unit_tests_shared_safe_browsing_sources)' ], 2511 'sources': [ '<@(chrome_unit_tests_mobile_safe_browsing_sources)',
2512 '<@(chrome_unit_tests_shared_safe_browsing_sources)',
2513 ],
2508 }], 2514 }],
2509 ['enable_autofill_dialog==1 and OS!="android"', { 2515 ['enable_autofill_dialog==1 and OS!="android"', {
2510 'sources': [ '<@(chrome_unit_tests_autofill_dialog_sources)' ], 2516 'sources': [ '<@(chrome_unit_tests_autofill_dialog_sources)' ],
2511 }], 2517 }],
2512 ['enable_plugins==1', { 2518 ['enable_plugins==1', {
2513 'sources': [ '<@(chrome_unit_tests_plugins_sources)' ], 2519 'sources': [ '<@(chrome_unit_tests_plugins_sources)' ],
2514 }], 2520 }],
2515 ['enable_print_preview==1', { 2521 ['enable_print_preview==1', {
2516 'sources': [ '<@(chrome_unit_tests_print_preview_sources)' ], 2522 'sources': [ '<@(chrome_unit_tests_print_preview_sources)' ],
2517 }], 2523 }],
(...skipping 531 matching lines...) Expand 10 before | Expand all | Expand 10 after
3049 'dependencies': [ 3055 'dependencies': [
3050 '../tools/xdisplaycheck/xdisplaycheck.gyp:xdisplaycheck', 3056 '../tools/xdisplaycheck/xdisplaycheck.gyp:xdisplaycheck',
3051 ], 3057 ],
3052 }], 3058 }],
3053 ], 3059 ],
3054 }, 3060 },
3055 ], 3061 ],
3056 }], 3062 }],
3057 ], # 'conditions' 3063 ], # 'conditions'
3058 } 3064 }
OLDNEW
« no previous file with comments | « chrome/chrome_tests.gypi ('k') | chrome/test/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698