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

Side by Side Diff: chrome/chrome_browser.gypi

Issue 1110723002: Split to SafeBrowsingDatabaseManager into Local* and Remote*. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Respond to review. Tweak comments and list initializer. Created 5 years, 7 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 { 5 {
6 'variables': { 6 'variables': {
7 # All .cc, .h, .m, and .mm files under browser except for: 7 # All .cc, .h, .m, and .mm files under browser except for:
8 # * tests and mocks. 8 # * tests and mocks.
9 # * code below browser/chromeos 9 # * code below browser/chromeos
10 # * code below browser/extensions 10 # * code below browser/extensions
(...skipping 2341 matching lines...) Expand 10 before | Expand all | Expand 10 after
2352 'browser/profiles/storage_partition_descriptor.h', 2352 'browser/profiles/storage_partition_descriptor.h',
2353 ], 2353 ],
2354 'chrome_browser_rlz_sources': [ 2354 'chrome_browser_rlz_sources': [
2355 'browser/rlz/rlz.cc', 2355 'browser/rlz/rlz.cc',
2356 'browser/rlz/rlz.h', 2356 'browser/rlz/rlz.h',
2357 'browser/rlz/rlz_chromeos.cc', 2357 'browser/rlz/rlz_chromeos.cc',
2358 'browser/rlz/rlz_ios.mm', 2358 'browser/rlz/rlz_ios.mm',
2359 'browser/rlz/rlz_mac.cc', 2359 'browser/rlz/rlz_mac.cc',
2360 'browser/rlz/rlz_win.cc', 2360 'browser/rlz/rlz_win.cc',
2361 ], 2361 ],
2362 # Used for safe browsing in basic mode (safe_browsing=2) as well as full 2362 # "Safe Browsing Basic" files used for safe browsing in full mode
2363 # mode (safe_browsing=1). 2363 # (safe_browsing=1), mobile (=2), and mobile-extended (=3).
2364 'chrome_browser_safe_browsing_basic_sources': [ 2364 'chrome_browser_safe_browsing_basic_sources': [
2365 'browser/renderer_host/safe_browsing_resource_throttle_factory.cc', 2365 'browser/renderer_host/safe_browsing_resource_throttle_factory.cc',
2366 'browser/renderer_host/safe_browsing_resource_throttle_factory.h', 2366 'browser/renderer_host/safe_browsing_resource_throttle_factory.h',
2367 'browser/safe_browsing/malware_details.cc', 2367 'browser/safe_browsing/malware_details.cc',
2368 'browser/safe_browsing/malware_details.h', 2368 'browser/safe_browsing/malware_details.h',
2369 'browser/safe_browsing/malware_details_cache.cc', 2369 'browser/safe_browsing/malware_details_cache.cc',
2370 'browser/safe_browsing/malware_details_cache.h', 2370 'browser/safe_browsing/malware_details_cache.h',
2371 'browser/safe_browsing/malware_details_history.cc', 2371 'browser/safe_browsing/malware_details_history.cc',
2372 'browser/safe_browsing/malware_details_history.h', 2372 'browser/safe_browsing/malware_details_history.h',
2373 'browser/safe_browsing/ping_manager.cc', 2373 'browser/safe_browsing/ping_manager.cc',
2374 'browser/safe_browsing/ping_manager.h', 2374 'browser/safe_browsing/ping_manager.h',
2375 'browser/safe_browsing/protocol_manager_helper.cc', 2375 'browser/safe_browsing/protocol_manager_helper.cc',
2376 'browser/safe_browsing/protocol_manager_helper.h', 2376 'browser/safe_browsing/protocol_manager_helper.h',
2377 'browser/safe_browsing/safe_browsing_blocking_page.cc', 2377 'browser/safe_browsing/safe_browsing_blocking_page.cc',
2378 'browser/safe_browsing/safe_browsing_blocking_page.h', 2378 'browser/safe_browsing/safe_browsing_blocking_page.h',
2379 'browser/safe_browsing/safe_browsing_service.cc', 2379 'browser/safe_browsing/safe_browsing_service.cc',
2380 'browser/safe_browsing/safe_browsing_service.h', 2380 'browser/safe_browsing/safe_browsing_service.h',
2381 'browser/safe_browsing/safe_browsing_util.cc', 2381 'browser/safe_browsing/safe_browsing_util.cc',
2382 'browser/safe_browsing/safe_browsing_util.h', 2382 'browser/safe_browsing/safe_browsing_util.h',
2383 'browser/safe_browsing/ui_manager.cc', 2383 'browser/safe_browsing/ui_manager.cc',
2384 'browser/safe_browsing/ui_manager.h', 2384 'browser/safe_browsing/ui_manager.h',
2385 ], 2385 ],
2386 # Files in addition to the "basic" ones to use for full safe browsing. 2386 # "Safe Browsing Extended Mobile" files in addition to the "basic" ones
2387 # to use for mobile_extended mode. This has some in common with "full."
2388 'chrome_browser_safe_browsing_mobile_extended_sources': [
2389 'browser/renderer_host/safe_browsing_resource_throttle.cc',
2390 'browser/renderer_host/safe_browsing_resource_throttle.h',
2391 'browser/safe_browsing/android_safe_browsing_api_handler.cc',
2392 'browser/safe_browsing/android_safe_browsing_api_handler.h',
2393 'browser/safe_browsing/database_manager.h',
2394 'browser/safe_browsing/remote_database_manager.cc',
2395 'browser/safe_browsing/remote_database_manager.h',
2396 ],
2397 # "Safe Browsing Full" files in addition to the "basic" ones to use for
2398 # full safe browsing. This has some in common with "mobile_extended."
2387 'chrome_browser_safe_browsing_full_sources': [ 2399 'chrome_browser_safe_browsing_full_sources': [
2388 'browser/download/download_completion_blocker.cc', 2400 'browser/download/download_completion_blocker.cc',
2389 'browser/download/download_completion_blocker.h', 2401 'browser/download/download_completion_blocker.h',
2390 'browser/renderer_host/safe_browsing_resource_throttle.cc', 2402 'browser/renderer_host/safe_browsing_resource_throttle.cc',
2391 'browser/renderer_host/safe_browsing_resource_throttle.h', 2403 'browser/renderer_host/safe_browsing_resource_throttle.h',
2392 'browser/safe_browsing/browser_feature_extractor.cc', 2404 'browser/safe_browsing/browser_feature_extractor.cc',
2393 'browser/safe_browsing/browser_feature_extractor.h', 2405 'browser/safe_browsing/browser_feature_extractor.h',
2394 'browser/safe_browsing/browser_features.cc', 2406 'browser/safe_browsing/browser_features.cc',
2395 'browser/safe_browsing/browser_features.h', 2407 'browser/safe_browsing/browser_features.h',
2396 'browser/safe_browsing/chunk_range.cc', 2408 'browser/safe_browsing/chunk_range.cc',
2397 'browser/safe_browsing/chunk_range.h', 2409 'browser/safe_browsing/chunk_range.h',
2398 'browser/safe_browsing/client_side_detection_host.cc', 2410 'browser/safe_browsing/client_side_detection_host.cc',
2399 'browser/safe_browsing/client_side_detection_host.h', 2411 'browser/safe_browsing/client_side_detection_host.h',
2400 'browser/safe_browsing/client_side_detection_service.cc', 2412 'browser/safe_browsing/client_side_detection_service.cc',
2401 'browser/safe_browsing/client_side_detection_service.h', 2413 'browser/safe_browsing/client_side_detection_service.h',
2402 'browser/safe_browsing/database_manager.cc',
2403 'browser/safe_browsing/database_manager.h', 2414 'browser/safe_browsing/database_manager.h',
2404 'browser/safe_browsing/download_feedback.cc', 2415 'browser/safe_browsing/download_feedback.cc',
2405 'browser/safe_browsing/download_feedback.h', 2416 'browser/safe_browsing/download_feedback.h',
2406 'browser/safe_browsing/download_feedback_service.cc', 2417 'browser/safe_browsing/download_feedback_service.cc',
2407 'browser/safe_browsing/download_feedback_service.h', 2418 'browser/safe_browsing/download_feedback_service.h',
2408 'browser/safe_browsing/download_protection_service.cc', 2419 'browser/safe_browsing/download_protection_service.cc',
2409 'browser/safe_browsing/download_protection_service.h', 2420 'browser/safe_browsing/download_protection_service.h',
2410 'browser/safe_browsing/incident_reporting/binary_integrity_analyzer.cc', 2421 'browser/safe_browsing/incident_reporting/binary_integrity_analyzer.cc',
2411 'browser/safe_browsing/incident_reporting/binary_integrity_analyzer.h', 2422 'browser/safe_browsing/incident_reporting/binary_integrity_analyzer.h',
2412 'browser/safe_browsing/incident_reporting/binary_integrity_analyzer_win.cc ', 2423 'browser/safe_browsing/incident_reporting/binary_integrity_analyzer_win.cc ',
(...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after
2448 'browser/safe_browsing/incident_reporting/resource_request_detector.cc', 2459 'browser/safe_browsing/incident_reporting/resource_request_detector.cc',
2449 'browser/safe_browsing/incident_reporting/resource_request_detector.h', 2460 'browser/safe_browsing/incident_reporting/resource_request_detector.h',
2450 'browser/safe_browsing/incident_reporting/resource_request_incident.cc', 2461 'browser/safe_browsing/incident_reporting/resource_request_incident.cc',
2451 'browser/safe_browsing/incident_reporting/resource_request_incident.h', 2462 'browser/safe_browsing/incident_reporting/resource_request_incident.h',
2452 'browser/safe_browsing/incident_reporting/tracked_preference_incident.cc', 2463 'browser/safe_browsing/incident_reporting/tracked_preference_incident.cc',
2453 'browser/safe_browsing/incident_reporting/tracked_preference_incident.h', 2464 'browser/safe_browsing/incident_reporting/tracked_preference_incident.h',
2454 'browser/safe_browsing/incident_reporting/variations_seed_signature_analyz er.cc', 2465 'browser/safe_browsing/incident_reporting/variations_seed_signature_analyz er.cc',
2455 'browser/safe_browsing/incident_reporting/variations_seed_signature_analyz er.h', 2466 'browser/safe_browsing/incident_reporting/variations_seed_signature_analyz er.h',
2456 'browser/safe_browsing/incident_reporting/variations_seed_signature_incide nt.cc', 2467 'browser/safe_browsing/incident_reporting/variations_seed_signature_incide nt.cc',
2457 'browser/safe_browsing/incident_reporting/variations_seed_signature_incide nt.h', 2468 'browser/safe_browsing/incident_reporting/variations_seed_signature_incide nt.h',
2469 'browser/safe_browsing/local_database_manager.cc',
2470 'browser/safe_browsing/local_database_manager.h',
2458 'browser/safe_browsing/path_sanitizer.cc', 2471 'browser/safe_browsing/path_sanitizer.cc',
2459 'browser/safe_browsing/path_sanitizer.h', 2472 'browser/safe_browsing/path_sanitizer.h',
2460 'browser/safe_browsing/prefix_set.cc', 2473 'browser/safe_browsing/prefix_set.cc',
2461 'browser/safe_browsing/prefix_set.h', 2474 'browser/safe_browsing/prefix_set.h',
2462 'browser/safe_browsing/protocol_manager.cc', 2475 'browser/safe_browsing/protocol_manager.cc',
2463 'browser/safe_browsing/protocol_manager.h', 2476 'browser/safe_browsing/protocol_manager.h',
2464 'browser/safe_browsing/protocol_parser.cc', 2477 'browser/safe_browsing/protocol_parser.cc',
2465 'browser/safe_browsing/protocol_parser.h', 2478 'browser/safe_browsing/protocol_parser.h',
2466 'browser/safe_browsing/safe_browsing_database.cc', 2479 'browser/safe_browsing/safe_browsing_database.cc',
2467 'browser/safe_browsing/safe_browsing_database.h', 2480 'browser/safe_browsing/safe_browsing_database.h',
(...skipping 886 matching lines...) Expand 10 before | Expand all | Expand 10 after
3354 'safe_browsing_metadata_proto', 3367 'safe_browsing_metadata_proto',
3355 'safe_browsing_report_proto', 3368 'safe_browsing_report_proto',
3356 ], 3369 ],
3357 'conditions': [ 3370 'conditions': [
3358 ['safe_browsing == 1', { 3371 ['safe_browsing == 1', {
3359 'sources': [ '<@(chrome_browser_safe_browsing_full_sources)' ], 3372 'sources': [ '<@(chrome_browser_safe_browsing_full_sources)' ],
3360 'dependencies': [ 3373 'dependencies': [
3361 'safe_browsing_proto', 3374 'safe_browsing_proto',
3362 ], 3375 ],
3363 }], 3376 }],
3377 ['safe_browsing == 3', {
3378 'sources': [ '<@(chrome_browser_safe_browsing_mobile_extended_sour ces)' ],
3379 'dependencies': [
3380 'safe_browsing_proto',
3381 ],
3382 }],
3364 ], 3383 ],
3365 }], 3384 }],
3366 ['use_udev == 1', { 3385 ['use_udev == 1', {
3367 'dependencies': [ 3386 'dependencies': [
3368 '../device/udev_linux/udev.gyp:udev_linux', 3387 '../device/udev_linux/udev.gyp:udev_linux',
3369 ], 3388 ],
3370 }], 3389 }],
3371 ['OS=="linux"', { 3390 ['OS=="linux"', {
3372 'dependencies': [ 3391 'dependencies': [
3373 '../device/media_transfer_protocol/media_transfer_protocol.gyp:mtp_f ile_entry_proto', 3392 '../device/media_transfer_protocol/media_transfer_protocol.gyp:mtp_f ile_entry_proto',
(...skipping 490 matching lines...) Expand 10 before | Expand all | Expand 10 after
3864 'variables': { 3883 'variables': {
3865 'proto_in_dir': 'browser/sync_file_system/drive_backend', 3884 'proto_in_dir': 'browser/sync_file_system/drive_backend',
3866 'proto_out_dir': 'chrome/browser/sync_file_system/drive_backend', 3885 'proto_out_dir': 'chrome/browser/sync_file_system/drive_backend',
3867 }, 3886 },
3868 'includes': [ '../build/protoc.gypi' ] 3887 'includes': [ '../build/protoc.gypi' ]
3869 }, 3888 },
3870 ], 3889 ],
3871 },], 3890 },],
3872 ], 3891 ],
3873 } 3892 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698