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

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: Initialize the pointer to nullptr and check null before using. 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
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 1718 matching lines...) Expand 10 before | Expand all | Expand 10 after
2502 # TODO(sgurun): enable tests for safe_browsing==2. 2498 # TODO(sgurun): enable tests for safe_browsing==2.
2503 'sources': [ '<@(chrome_unit_tests_full_safe_browsing_sources)', 2499 'sources': [ '<@(chrome_unit_tests_full_safe_browsing_sources)',
2504 '<@(chrome_unit_tests_shared_safe_browsing_sources)', 2500 '<@(chrome_unit_tests_shared_safe_browsing_sources)',
2505 ], 2501 ],
2506 'dependencies': [ 2502 'dependencies': [
2507 '../components/components.gyp:test_database_manager', 2503 '../components/components.gyp:test_database_manager',
2508 'ipc_protobuf_message_test_proto', 2504 'ipc_protobuf_message_test_proto',
2509 ], 2505 ],
2510 }], 2506 }],
2511 ['safe_browsing==2', { 2507 ['safe_browsing==2', {
2512 'sources': [ '<@(chrome_unit_tests_mobile_safe_browsing_sources)', 2508 'sources': [ '<@(chrome_unit_tests_shared_safe_browsing_sources)' ],
2513 '<@(chrome_unit_tests_shared_safe_browsing_sources)',
2514 ],
2515 }], 2509 }],
2516 ['enable_autofill_dialog==1 and OS!="android"', { 2510 ['enable_autofill_dialog==1 and OS!="android"', {
2517 'sources': [ '<@(chrome_unit_tests_autofill_dialog_sources)' ], 2511 'sources': [ '<@(chrome_unit_tests_autofill_dialog_sources)' ],
2518 }], 2512 }],
2519 ['enable_plugins==1', { 2513 ['enable_plugins==1', {
2520 'sources': [ '<@(chrome_unit_tests_plugins_sources)' ], 2514 'sources': [ '<@(chrome_unit_tests_plugins_sources)' ],
2521 }], 2515 }],
2522 ['enable_print_preview==1', { 2516 ['enable_print_preview==1', {
2523 'sources': [ '<@(chrome_unit_tests_print_preview_sources)' ], 2517 'sources': [ '<@(chrome_unit_tests_print_preview_sources)' ],
2524 }], 2518 }],
(...skipping 531 matching lines...) Expand 10 before | Expand all | Expand 10 after
3056 'dependencies': [ 3050 'dependencies': [
3057 '../tools/xdisplaycheck/xdisplaycheck.gyp:xdisplaycheck', 3051 '../tools/xdisplaycheck/xdisplaycheck.gyp:xdisplaycheck',
3058 ], 3052 ],
3059 }], 3053 }],
3060 ], 3054 ],
3061 }, 3055 },
3062 ], 3056 ],
3063 }], 3057 }],
3064 ], # 'conditions' 3058 ], # 'conditions'
3065 } 3059 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698