OLD | NEW |
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 2334 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2345 'browser/profiles/storage_partition_descriptor.h', | 2345 'browser/profiles/storage_partition_descriptor.h', |
2346 ], | 2346 ], |
2347 'chrome_browser_rlz_sources': [ | 2347 'chrome_browser_rlz_sources': [ |
2348 'browser/rlz/rlz.cc', | 2348 'browser/rlz/rlz.cc', |
2349 'browser/rlz/rlz.h', | 2349 'browser/rlz/rlz.h', |
2350 'browser/rlz/rlz_chromeos.cc', | 2350 'browser/rlz/rlz_chromeos.cc', |
2351 'browser/rlz/rlz_ios.mm', | 2351 'browser/rlz/rlz_ios.mm', |
2352 'browser/rlz/rlz_mac.cc', | 2352 'browser/rlz/rlz_mac.cc', |
2353 'browser/rlz/rlz_win.cc', | 2353 'browser/rlz/rlz_win.cc', |
2354 ], | 2354 ], |
2355 # Used for safe browsing in basic mode (safe_browsing=2) as well as full | 2355 # "Safe Browsing Basic" files used for safe browsing in full mode |
2356 # mode (safe_browsing=1). | 2356 # (safe_browsing=1), mobile (=2), and mobile-extended (=3). |
2357 'chrome_browser_safe_browsing_basic_sources': [ | 2357 'chrome_browser_safe_browsing_basic_sources': [ |
| 2358 'browser/renderer_host/safe_browsing_resource_throttle.cc', |
2358 'browser/renderer_host/safe_browsing_resource_throttle_factory.cc', | 2359 'browser/renderer_host/safe_browsing_resource_throttle_factory.cc', |
2359 'browser/renderer_host/safe_browsing_resource_throttle_factory.h', | 2360 'browser/renderer_host/safe_browsing_resource_throttle_factory.h', |
| 2361 'browser/renderer_host/safe_browsing_resource_throttle.h', |
| 2362 'browser/safe_browsing/database_manager.h', |
| 2363 'browser/safe_browsing/malware_details_cache.cc', |
| 2364 'browser/safe_browsing/malware_details_cache.h', |
2360 'browser/safe_browsing/malware_details.cc', | 2365 'browser/safe_browsing/malware_details.cc', |
2361 'browser/safe_browsing/malware_details.h', | 2366 'browser/safe_browsing/malware_details.h', |
2362 'browser/safe_browsing/malware_details_cache.cc', | |
2363 'browser/safe_browsing/malware_details_cache.h', | |
2364 'browser/safe_browsing/malware_details_history.cc', | 2367 'browser/safe_browsing/malware_details_history.cc', |
2365 'browser/safe_browsing/malware_details_history.h', | 2368 'browser/safe_browsing/malware_details_history.h', |
2366 'browser/safe_browsing/ping_manager.cc', | 2369 'browser/safe_browsing/ping_manager.cc', |
2367 'browser/safe_browsing/ping_manager.h', | 2370 'browser/safe_browsing/ping_manager.h', |
2368 'browser/safe_browsing/protocol_manager_helper.cc', | 2371 'browser/safe_browsing/protocol_manager_helper.cc', |
2369 'browser/safe_browsing/protocol_manager_helper.h', | 2372 'browser/safe_browsing/protocol_manager_helper.h', |
2370 'browser/safe_browsing/safe_browsing_blocking_page.cc', | 2373 'browser/safe_browsing/safe_browsing_blocking_page.cc', |
2371 'browser/safe_browsing/safe_browsing_blocking_page.h', | 2374 'browser/safe_browsing/safe_browsing_blocking_page.h', |
| 2375 'browser/safe_browsing/safe_browsing_database.cc', |
| 2376 'browser/safe_browsing/safe_browsing_database.h', |
2372 'browser/safe_browsing/safe_browsing_service.cc', | 2377 'browser/safe_browsing/safe_browsing_service.cc', |
2373 'browser/safe_browsing/safe_browsing_service.h', | 2378 'browser/safe_browsing/safe_browsing_service.h', |
2374 'browser/safe_browsing/safe_browsing_util.cc', | 2379 'browser/safe_browsing/safe_browsing_util.cc', |
2375 'browser/safe_browsing/safe_browsing_util.h', | 2380 'browser/safe_browsing/safe_browsing_util.h', |
2376 'browser/safe_browsing/ui_manager.cc', | 2381 'browser/safe_browsing/ui_manager.cc', |
2377 'browser/safe_browsing/ui_manager.h', | 2382 'browser/safe_browsing/ui_manager.h', |
2378 ], | 2383 ], |
2379 # Files in addition to the "basic" ones to use for full safe browsing. | 2384 # "Safe Browsing Extended Mobile" files in addition to the "basic" ones |
| 2385 # to use for mobile_extended mode. |
| 2386 'chrome_browser_safe_browsing_mobile_extended_sources': [ |
| 2387 'browser/safe_browsing/android_safe_browsing_api_handler.cc', |
| 2388 'browser/safe_browsing/android_safe_browsing_api_handler.h', |
| 2389 'browser/safe_browsing/remote_database_manager.cc', |
| 2390 'browser/safe_browsing/remote_database_manager.h', |
| 2391 ], |
| 2392 # "Safe Browsing Full" files in addition to the "basic" ones to use for |
| 2393 # full safe browsing. |
2380 'chrome_browser_safe_browsing_full_sources': [ | 2394 'chrome_browser_safe_browsing_full_sources': [ |
2381 'browser/download/download_completion_blocker.cc', | 2395 'browser/download/download_completion_blocker.cc', |
2382 'browser/download/download_completion_blocker.h', | 2396 'browser/download/download_completion_blocker.h', |
2383 'browser/renderer_host/safe_browsing_resource_throttle.cc', | |
2384 'browser/renderer_host/safe_browsing_resource_throttle.h', | |
2385 'browser/safe_browsing/browser_feature_extractor.cc', | 2397 'browser/safe_browsing/browser_feature_extractor.cc', |
2386 'browser/safe_browsing/browser_feature_extractor.h', | 2398 'browser/safe_browsing/browser_feature_extractor.h', |
2387 'browser/safe_browsing/browser_features.cc', | 2399 'browser/safe_browsing/browser_features.cc', |
2388 'browser/safe_browsing/browser_features.h', | 2400 'browser/safe_browsing/browser_features.h', |
2389 'browser/safe_browsing/chunk_range.cc', | 2401 'browser/safe_browsing/chunk_range.cc', |
2390 'browser/safe_browsing/chunk_range.h', | 2402 'browser/safe_browsing/chunk_range.h', |
2391 'browser/safe_browsing/client_side_detection_host.cc', | 2403 'browser/safe_browsing/client_side_detection_host.cc', |
2392 'browser/safe_browsing/client_side_detection_host.h', | 2404 'browser/safe_browsing/client_side_detection_host.h', |
2393 'browser/safe_browsing/client_side_detection_service.cc', | 2405 'browser/safe_browsing/client_side_detection_service.cc', |
2394 'browser/safe_browsing/client_side_detection_service.h', | 2406 'browser/safe_browsing/client_side_detection_service.h', |
2395 'browser/safe_browsing/database_manager.cc', | |
2396 'browser/safe_browsing/database_manager.h', | |
2397 'browser/safe_browsing/download_feedback.cc', | 2407 'browser/safe_browsing/download_feedback.cc', |
2398 'browser/safe_browsing/download_feedback.h', | 2408 'browser/safe_browsing/download_feedback.h', |
2399 'browser/safe_browsing/download_feedback_service.cc', | 2409 'browser/safe_browsing/download_feedback_service.cc', |
2400 'browser/safe_browsing/download_feedback_service.h', | 2410 'browser/safe_browsing/download_feedback_service.h', |
2401 'browser/safe_browsing/download_protection_service.cc', | 2411 'browser/safe_browsing/download_protection_service.cc', |
2402 'browser/safe_browsing/download_protection_service.h', | 2412 'browser/safe_browsing/download_protection_service.h', |
2403 'browser/safe_browsing/incident_reporting/binary_integrity_analyzer.cc', | 2413 'browser/safe_browsing/incident_reporting/binary_integrity_analyzer.cc', |
2404 'browser/safe_browsing/incident_reporting/binary_integrity_analyzer.h', | 2414 'browser/safe_browsing/incident_reporting/binary_integrity_analyzer.h', |
2405 'browser/safe_browsing/incident_reporting/binary_integrity_analyzer_win.cc
', | 2415 'browser/safe_browsing/incident_reporting/binary_integrity_analyzer_win.cc
', |
2406 'browser/safe_browsing/incident_reporting/binary_integrity_incident.cc', | 2416 'browser/safe_browsing/incident_reporting/binary_integrity_incident.cc', |
(...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2441 'browser/safe_browsing/incident_reporting/resource_request_detector.cc', | 2451 'browser/safe_browsing/incident_reporting/resource_request_detector.cc', |
2442 'browser/safe_browsing/incident_reporting/resource_request_detector.h', | 2452 'browser/safe_browsing/incident_reporting/resource_request_detector.h', |
2443 'browser/safe_browsing/incident_reporting/resource_request_incident.cc', | 2453 'browser/safe_browsing/incident_reporting/resource_request_incident.cc', |
2444 'browser/safe_browsing/incident_reporting/resource_request_incident.h', | 2454 'browser/safe_browsing/incident_reporting/resource_request_incident.h', |
2445 'browser/safe_browsing/incident_reporting/tracked_preference_incident.cc', | 2455 'browser/safe_browsing/incident_reporting/tracked_preference_incident.cc', |
2446 'browser/safe_browsing/incident_reporting/tracked_preference_incident.h', | 2456 'browser/safe_browsing/incident_reporting/tracked_preference_incident.h', |
2447 'browser/safe_browsing/incident_reporting/variations_seed_signature_analyz
er.cc', | 2457 'browser/safe_browsing/incident_reporting/variations_seed_signature_analyz
er.cc', |
2448 'browser/safe_browsing/incident_reporting/variations_seed_signature_analyz
er.h', | 2458 'browser/safe_browsing/incident_reporting/variations_seed_signature_analyz
er.h', |
2449 'browser/safe_browsing/incident_reporting/variations_seed_signature_incide
nt.cc', | 2459 'browser/safe_browsing/incident_reporting/variations_seed_signature_incide
nt.cc', |
2450 'browser/safe_browsing/incident_reporting/variations_seed_signature_incide
nt.h', | 2460 'browser/safe_browsing/incident_reporting/variations_seed_signature_incide
nt.h', |
| 2461 'browser/safe_browsing/local_database_manager.cc', |
| 2462 'browser/safe_browsing/local_database_manager.h', |
2451 'browser/safe_browsing/path_sanitizer.cc', | 2463 'browser/safe_browsing/path_sanitizer.cc', |
2452 'browser/safe_browsing/path_sanitizer.h', | 2464 'browser/safe_browsing/path_sanitizer.h', |
2453 'browser/safe_browsing/prefix_set.cc', | 2465 'browser/safe_browsing/prefix_set.cc', |
2454 'browser/safe_browsing/prefix_set.h', | 2466 'browser/safe_browsing/prefix_set.h', |
2455 'browser/safe_browsing/protocol_manager.cc', | 2467 'browser/safe_browsing/protocol_manager.cc', |
2456 'browser/safe_browsing/protocol_manager.h', | 2468 'browser/safe_browsing/protocol_manager.h', |
2457 'browser/safe_browsing/protocol_parser.cc', | 2469 'browser/safe_browsing/protocol_parser.cc', |
2458 'browser/safe_browsing/protocol_parser.h', | 2470 'browser/safe_browsing/protocol_parser.h', |
2459 'browser/safe_browsing/safe_browsing_database.cc', | |
2460 'browser/safe_browsing/safe_browsing_database.h', | |
2461 'browser/safe_browsing/safe_browsing_store.cc', | 2471 'browser/safe_browsing/safe_browsing_store.cc', |
2462 'browser/safe_browsing/safe_browsing_store.h', | 2472 'browser/safe_browsing/safe_browsing_store.h', |
2463 'browser/safe_browsing/safe_browsing_store_file.cc', | 2473 'browser/safe_browsing/safe_browsing_store_file.cc', |
2464 'browser/safe_browsing/safe_browsing_store_file.h', | 2474 'browser/safe_browsing/safe_browsing_store_file.h', |
2465 'browser/safe_browsing/sandboxed_zip_analyzer.cc', | 2475 'browser/safe_browsing/sandboxed_zip_analyzer.cc', |
2466 'browser/safe_browsing/sandboxed_zip_analyzer.h', | 2476 'browser/safe_browsing/sandboxed_zip_analyzer.h', |
2467 'browser/safe_browsing/two_phase_uploader.cc', | 2477 'browser/safe_browsing/two_phase_uploader.cc', |
2468 'browser/safe_browsing/two_phase_uploader.h', | 2478 'browser/safe_browsing/two_phase_uploader.h', |
2469 ], | 2479 ], |
2470 'chrome_browser_search_engines_sources': [ | 2480 'chrome_browser_search_engines_sources': [ |
(...skipping 873 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
3344 'safe_browsing_metadata_proto', | 3354 'safe_browsing_metadata_proto', |
3345 'safe_browsing_report_proto', | 3355 'safe_browsing_report_proto', |
3346 ], | 3356 ], |
3347 'conditions': [ | 3357 'conditions': [ |
3348 ['safe_browsing == 1', { | 3358 ['safe_browsing == 1', { |
3349 'sources': [ '<@(chrome_browser_safe_browsing_full_sources)' ], | 3359 'sources': [ '<@(chrome_browser_safe_browsing_full_sources)' ], |
3350 'dependencies': [ | 3360 'dependencies': [ |
3351 'safe_browsing_proto', | 3361 'safe_browsing_proto', |
3352 ], | 3362 ], |
3353 }], | 3363 }], |
| 3364 ['safe_browsing == 3', { |
| 3365 'sources': [ '<@(chrome_browser_safe_browsing_mobile_extended_sour
ces)' ], |
| 3366 'dependencies': [ |
| 3367 'safe_browsing_proto', |
| 3368 ], |
| 3369 }], |
3354 ], | 3370 ], |
3355 }], | 3371 }], |
3356 ['use_udev == 1', { | 3372 ['use_udev == 1', { |
3357 'dependencies': [ | 3373 'dependencies': [ |
3358 '../device/udev_linux/udev.gyp:udev_linux', | 3374 '../device/udev_linux/udev.gyp:udev_linux', |
3359 ], | 3375 ], |
3360 }], | 3376 }], |
3361 ['OS=="linux"', { | 3377 ['OS=="linux"', { |
3362 'dependencies': [ | 3378 'dependencies': [ |
3363 '../device/media_transfer_protocol/media_transfer_protocol.gyp:mtp_f
ile_entry_proto', | 3379 '../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 Loading... |
3854 'variables': { | 3870 'variables': { |
3855 'proto_in_dir': 'browser/sync_file_system/drive_backend', | 3871 'proto_in_dir': 'browser/sync_file_system/drive_backend', |
3856 'proto_out_dir': 'chrome/browser/sync_file_system/drive_backend', | 3872 'proto_out_dir': 'chrome/browser/sync_file_system/drive_backend', |
3857 }, | 3873 }, |
3858 'includes': [ '../build/protoc.gypi' ] | 3874 'includes': [ '../build/protoc.gypi' ] |
3859 }, | 3875 }, |
3860 ], | 3876 ], |
3861 },], | 3877 },], |
3862 ], | 3878 ], |
3863 } | 3879 } |
OLD | NEW |