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

Side by Side Diff: chrome/chrome_tests_unit.gypi

Issue 1624723002: Move remote_db_manager into the safe_browsing_db component. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fetch, rebase, format Created 4 years, 10 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 747 matching lines...) Expand 10 before | Expand all | Expand 10 after
758 'browser/notifications/platform_notification_service_unittest.cc', 758 'browser/notifications/platform_notification_service_unittest.cc',
759 ], 759 ],
760 # Used by Full Safe Browsing (safe_browsing==1) and Mobile Safe 760 # Used by Full Safe Browsing (safe_browsing==1) and Mobile Safe
761 # Browsing (==2) modes. 761 # Browsing (==2) modes.
762 'chrome_unit_tests_shared_safe_browsing_sources': [ 762 'chrome_unit_tests_shared_safe_browsing_sources': [
763 'browser/safe_browsing/ping_manager_unittest.cc', 763 'browser/safe_browsing/ping_manager_unittest.cc',
764 'browser/safe_browsing/safe_browsing_blocking_page_unittest.cc', 764 'browser/safe_browsing/safe_browsing_blocking_page_unittest.cc',
765 'browser/safe_browsing/threat_details_unittest.cc', 765 'browser/safe_browsing/threat_details_unittest.cc',
766 'browser/safe_browsing/ui_manager_unittest.cc', 766 'browser/safe_browsing/ui_manager_unittest.cc',
767 ], 767 ],
768 'chrome_unit_tests_mobile_safe_browsing_sources': [
769 'browser/safe_browsing/remote_database_manager_unittest.cc',
770 'browser/safe_browsing/safe_browsing_api_handler_unittest.cc',
771 ],
772 'chrome_unit_tests_full_safe_browsing_sources': [ 768 'chrome_unit_tests_full_safe_browsing_sources': [
773 'browser/safe_browsing/browser_feature_extractor_unittest.cc', 769 'browser/safe_browsing/browser_feature_extractor_unittest.cc',
774 'browser/safe_browsing/chunk_range_unittest.cc', 770 'browser/safe_browsing/chunk_range_unittest.cc',
775 'browser/safe_browsing/client_side_detection_host_unittest.cc', 771 'browser/safe_browsing/client_side_detection_host_unittest.cc',
776 'browser/safe_browsing/client_side_detection_service_unittest.cc', 772 'browser/safe_browsing/client_side_detection_service_unittest.cc',
777 'browser/safe_browsing/client_side_model_loader_unittest.cc', 773 'browser/safe_browsing/client_side_model_loader_unittest.cc',
778 'browser/safe_browsing/download_feedback_service_unittest.cc', 774 'browser/safe_browsing/download_feedback_service_unittest.cc',
779 'browser/safe_browsing/download_feedback_unittest.cc', 775 'browser/safe_browsing/download_feedback_unittest.cc',
780 'browser/safe_browsing/download_protection_service_unittest.cc', 776 'browser/safe_browsing/download_protection_service_unittest.cc',
781 'browser/safe_browsing/incident_reporting/binary_integrity_analyzer_mac_un ittest.cc', 777 'browser/safe_browsing/incident_reporting/binary_integrity_analyzer_mac_un ittest.cc',
(...skipping 1714 matching lines...) Expand 10 before | Expand all | Expand 10 after
2496 # TODO(sgurun): enable tests for safe_browsing==2. 2492 # TODO(sgurun): enable tests for safe_browsing==2.
2497 'sources': [ '<@(chrome_unit_tests_full_safe_browsing_sources)', 2493 'sources': [ '<@(chrome_unit_tests_full_safe_browsing_sources)',
2498 '<@(chrome_unit_tests_shared_safe_browsing_sources)', 2494 '<@(chrome_unit_tests_shared_safe_browsing_sources)',
2499 ], 2495 ],
2500 'dependencies': [ 2496 'dependencies': [
2501 '../components/components.gyp:test_database_manager', 2497 '../components/components.gyp:test_database_manager',
2502 'ipc_protobuf_message_test_proto', 2498 'ipc_protobuf_message_test_proto',
2503 ], 2499 ],
2504 }], 2500 }],
2505 ['safe_browsing==2', { 2501 ['safe_browsing==2', {
2506 'sources': [ '<@(chrome_unit_tests_mobile_safe_browsing_sources)', 2502 'sources': [ '<@(chrome_unit_tests_shared_safe_browsing_sources)' ],
2507 '<@(chrome_unit_tests_shared_safe_browsing_sources)',
2508 ],
2509 }], 2503 }],
2510 ['enable_autofill_dialog==1 and OS!="android"', { 2504 ['enable_autofill_dialog==1 and OS!="android"', {
2511 'sources': [ '<@(chrome_unit_tests_autofill_dialog_sources)' ], 2505 'sources': [ '<@(chrome_unit_tests_autofill_dialog_sources)' ],
2512 }], 2506 }],
2513 ['enable_plugins==1', { 2507 ['enable_plugins==1', {
2514 'sources': [ '<@(chrome_unit_tests_plugins_sources)' ], 2508 'sources': [ '<@(chrome_unit_tests_plugins_sources)' ],
2515 }], 2509 }],
2516 ['enable_print_preview==1', { 2510 ['enable_print_preview==1', {
2517 'sources': [ '<@(chrome_unit_tests_print_preview_sources)' ], 2511 'sources': [ '<@(chrome_unit_tests_print_preview_sources)' ],
2518 }], 2512 }],
(...skipping 512 matching lines...) Expand 10 before | Expand all | Expand 10 after
3031 'dependencies': [ 3025 'dependencies': [
3032 '../tools/xdisplaycheck/xdisplaycheck.gyp:xdisplaycheck', 3026 '../tools/xdisplaycheck/xdisplaycheck.gyp:xdisplaycheck',
3033 ], 3027 ],
3034 }], 3028 }],
3035 ], 3029 ],
3036 }, 3030 },
3037 ], 3031 ],
3038 }], 3032 }],
3039 ], # 'conditions' 3033 ], # 'conditions'
3040 } 3034 }
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