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

Side by Side Diff: chrome/chrome_tests_unit.gypi

Issue 1579403002: Move remote_db_manager into the safe_browsing_db component. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Define a variable for safe_browsing_db_mobile_unittest_sources 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 ],
774 'chrome_unit_tests_full_safe_browsing_sources': [ 770 'chrome_unit_tests_full_safe_browsing_sources': [
775 'browser/safe_browsing/browser_feature_extractor_unittest.cc', 771 'browser/safe_browsing/browser_feature_extractor_unittest.cc',
776 'browser/safe_browsing/chunk_range_unittest.cc', 772 'browser/safe_browsing/chunk_range_unittest.cc',
777 'browser/safe_browsing/client_side_detection_host_unittest.cc', 773 'browser/safe_browsing/client_side_detection_host_unittest.cc',
778 'browser/safe_browsing/client_side_detection_service_unittest.cc', 774 'browser/safe_browsing/client_side_detection_service_unittest.cc',
779 'browser/safe_browsing/client_side_model_loader_unittest.cc', 775 'browser/safe_browsing/client_side_model_loader_unittest.cc',
780 'browser/safe_browsing/download_feedback_service_unittest.cc', 776 'browser/safe_browsing/download_feedback_service_unittest.cc',
781 'browser/safe_browsing/download_feedback_unittest.cc', 777 'browser/safe_browsing/download_feedback_unittest.cc',
782 'browser/safe_browsing/download_protection_service_unittest.cc', 778 'browser/safe_browsing/download_protection_service_unittest.cc',
783 'browser/safe_browsing/incident_reporting/binary_integrity_analyzer_mac_un ittest.cc', 779 'browser/safe_browsing/incident_reporting/binary_integrity_analyzer_mac_un ittest.cc',
(...skipping 1717 matching lines...) Expand 10 before | Expand all | Expand 10 after
2501 # TODO(sgurun): enable tests for safe_browsing==2. 2497 # TODO(sgurun): enable tests for safe_browsing==2.
2502 'sources': [ '<@(chrome_unit_tests_full_safe_browsing_sources)', 2498 'sources': [ '<@(chrome_unit_tests_full_safe_browsing_sources)',
2503 '<@(chrome_unit_tests_shared_safe_browsing_sources)', 2499 '<@(chrome_unit_tests_shared_safe_browsing_sources)',
2504 ], 2500 ],
2505 'dependencies': [ 2501 'dependencies': [
2506 '../components/components.gyp:test_database_manager', 2502 '../components/components.gyp:test_database_manager',
2507 'ipc_protobuf_message_test_proto', 2503 'ipc_protobuf_message_test_proto',
2508 ], 2504 ],
2509 }], 2505 }],
2510 ['safe_browsing==2', { 2506 ['safe_browsing==2', {
2511 'sources': [ '<@(chrome_unit_tests_mobile_safe_browsing_sources)', 2507 'sources': [ '<@(chrome_unit_tests_shared_safe_browsing_sources)' ],
2512 '<@(chrome_unit_tests_shared_safe_browsing_sources)',
2513 ],
2514 }], 2508 }],
2515 ['enable_autofill_dialog==1 and OS!="android"', { 2509 ['enable_autofill_dialog==1 and OS!="android"', {
2516 'sources': [ '<@(chrome_unit_tests_autofill_dialog_sources)' ], 2510 'sources': [ '<@(chrome_unit_tests_autofill_dialog_sources)' ],
2517 }], 2511 }],
2518 ['enable_plugins==1', { 2512 ['enable_plugins==1', {
2519 'sources': [ '<@(chrome_unit_tests_plugins_sources)' ], 2513 'sources': [ '<@(chrome_unit_tests_plugins_sources)' ],
2520 }], 2514 }],
2521 ['enable_print_preview==1', { 2515 ['enable_print_preview==1', {
2522 'sources': [ '<@(chrome_unit_tests_print_preview_sources)' ], 2516 'sources': [ '<@(chrome_unit_tests_print_preview_sources)' ],
2523 }], 2517 }],
(...skipping 531 matching lines...) Expand 10 before | Expand all | Expand 10 after
3055 'dependencies': [ 3049 'dependencies': [
3056 '../tools/xdisplaycheck/xdisplaycheck.gyp:xdisplaycheck', 3050 '../tools/xdisplaycheck/xdisplaycheck.gyp:xdisplaycheck',
3057 ], 3051 ],
3058 }], 3052 }],
3059 ], 3053 ],
3060 }, 3054 },
3061 ], 3055 ],
3062 }], 3056 }],
3063 ], # 'conditions' 3057 ], # 'conditions'
3064 } 3058 }
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