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

Side by Side Diff: chrome/chrome_browser.gypi

Issue 1243293003: Platform-specific prune state storage. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@prune1
Patch Set: moved uninstall cleanup to separate cl Created 5 years, 3 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 2493 matching lines...) Expand 10 before | Expand all | Expand 10 after
2504 'browser/safe_browsing/incident_reporting/incident_report_uploader_impl.cc ', 2504 'browser/safe_browsing/incident_reporting/incident_report_uploader_impl.cc ',
2505 'browser/safe_browsing/incident_reporting/incident_report_uploader_impl.h' , 2505 'browser/safe_browsing/incident_reporting/incident_report_uploader_impl.h' ,
2506 'browser/safe_browsing/incident_reporting/incident_reporting_service.cc', 2506 'browser/safe_browsing/incident_reporting/incident_reporting_service.cc',
2507 'browser/safe_browsing/incident_reporting/incident_reporting_service.h', 2507 'browser/safe_browsing/incident_reporting/incident_reporting_service.h',
2508 'browser/safe_browsing/incident_reporting/last_download_finder.cc', 2508 'browser/safe_browsing/incident_reporting/last_download_finder.cc',
2509 'browser/safe_browsing/incident_reporting/last_download_finder.h', 2509 'browser/safe_browsing/incident_reporting/last_download_finder.h',
2510 'browser/safe_browsing/incident_reporting/module_integrity_verifier_win.cc ', 2510 'browser/safe_browsing/incident_reporting/module_integrity_verifier_win.cc ',
2511 'browser/safe_browsing/incident_reporting/module_integrity_verifier_win.h' , 2511 'browser/safe_browsing/incident_reporting/module_integrity_verifier_win.h' ,
2512 'browser/safe_browsing/incident_reporting/off_domain_inclusion_detector.cc ', 2512 'browser/safe_browsing/incident_reporting/off_domain_inclusion_detector.cc ',
2513 'browser/safe_browsing/incident_reporting/off_domain_inclusion_detector.h' , 2513 'browser/safe_browsing/incident_reporting/off_domain_inclusion_detector.h' ,
2514 'browser/safe_browsing/incident_reporting/platform_state_store.cc',
2515 'browser/safe_browsing/incident_reporting/platform_state_store.h',
2516 'browser/safe_browsing/incident_reporting/platform_state_store_win.cc',
2514 'browser/safe_browsing/incident_reporting/preference_validation_delegate.c c', 2517 'browser/safe_browsing/incident_reporting/preference_validation_delegate.c c',
2515 'browser/safe_browsing/incident_reporting/preference_validation_delegate.h ', 2518 'browser/safe_browsing/incident_reporting/preference_validation_delegate.h ',
2516 'browser/safe_browsing/incident_reporting/resource_request_detector.cc', 2519 'browser/safe_browsing/incident_reporting/resource_request_detector.cc',
2517 'browser/safe_browsing/incident_reporting/resource_request_detector.h', 2520 'browser/safe_browsing/incident_reporting/resource_request_detector.h',
2518 'browser/safe_browsing/incident_reporting/resource_request_incident.cc', 2521 'browser/safe_browsing/incident_reporting/resource_request_incident.cc',
2519 'browser/safe_browsing/incident_reporting/resource_request_incident.h', 2522 'browser/safe_browsing/incident_reporting/resource_request_incident.h',
2520 'browser/safe_browsing/incident_reporting/state_store.cc', 2523 'browser/safe_browsing/incident_reporting/state_store.cc',
2521 'browser/safe_browsing/incident_reporting/state_store.h', 2524 'browser/safe_browsing/incident_reporting/state_store.h',
2522 'browser/safe_browsing/incident_reporting/tracked_preference_incident.cc', 2525 'browser/safe_browsing/incident_reporting/tracked_preference_incident.cc',
2523 'browser/safe_browsing/incident_reporting/tracked_preference_incident.h', 2526 'browser/safe_browsing/incident_reporting/tracked_preference_incident.h',
(...skipping 965 matching lines...) Expand 10 before | Expand all | Expand 10 after
3489 'safe_browsing_chunk_proto', 3492 'safe_browsing_chunk_proto',
3490 'safe_browsing_metadata_proto', 3493 'safe_browsing_metadata_proto',
3491 'safe_browsing_report_proto', 3494 'safe_browsing_report_proto',
3492 ], 3495 ],
3493 'conditions': [ 3496 'conditions': [
3494 ['safe_browsing == 1', { 3497 ['safe_browsing == 1', {
3495 'sources': [ '<@(chrome_browser_safe_browsing_full_sources)' ], 3498 'sources': [ '<@(chrome_browser_safe_browsing_full_sources)' ],
3496 'dependencies': [ 3499 'dependencies': [
3497 'safe_browsing_proto', 3500 'safe_browsing_proto',
3498 ], 3501 ],
3502 'conditions': [
3503 ['OS=="win"', {
3504 'dependencies': [
3505 'incident_reporting_state_store_data_proto',
3506 ],
3507 }],
3508 ],
3499 }], 3509 }],
3500 ['safe_browsing == 3', { 3510 ['safe_browsing == 3', {
3501 'sources': [ '<@(chrome_browser_safe_browsing_mobile_extended_sour ces)' ], 3511 'sources': [ '<@(chrome_browser_safe_browsing_mobile_extended_sour ces)' ],
3502 'dependencies': [ 3512 'dependencies': [
3503 'safe_browsing_proto', 3513 'safe_browsing_proto',
3504 ], 3514 ],
3505 }], 3515 }],
3506 ], 3516 ],
3507 }], 3517 }],
3508 ['use_udev == 1', { 3518 ['use_udev == 1', {
(...skipping 442 matching lines...) Expand 10 before | Expand all | Expand 10 after
3951 # GN version: //chrome/browser/safe_browsing:report_proto 3961 # GN version: //chrome/browser/safe_browsing:report_proto
3952 'target_name': 'safe_browsing_report_proto', 3962 'target_name': 'safe_browsing_report_proto',
3953 'type': 'static_library', 3963 'type': 'static_library',
3954 'sources': [ 'browser/safe_browsing/report.proto' ], 3964 'sources': [ 'browser/safe_browsing/report.proto' ],
3955 'variables': { 3965 'variables': {
3956 'proto_in_dir': 'browser/safe_browsing', 3966 'proto_in_dir': 'browser/safe_browsing',
3957 'proto_out_dir': 'chrome/browser/safe_browsing', 3967 'proto_out_dir': 'chrome/browser/safe_browsing',
3958 }, 3968 },
3959 'includes': [ '../build/protoc.gypi' ] 3969 'includes': [ '../build/protoc.gypi' ]
3960 }, 3970 },
3971 {
3972 # Protobuf compiler / generator for the safebrowsing incident reporting
3973 # service state store data protocol buffer.
3974 # GN version: //chrome/browser/safe_browsing/incident_reporting:state_stor e_data_proto
3975 'target_name': 'incident_reporting_state_store_data_proto',
3976 'type': 'static_library',
3977 'sources': [ 'browser/safe_browsing/incident_reporting/state_store_data.pr oto' ],
3978 'variables': {
3979 'proto_in_dir': 'browser/safe_browsing/incident_reporting',
3980 'proto_out_dir': 'chrome/browser/safe_browsing/incident_reporting',
3981 },
3982 'includes': [ '../build/protoc.gypi' ],
3983 },
3961 ], 3984 ],
3962 'conditions': [ 3985 'conditions': [
3963 ['OS=="android"', { 3986 ['OS=="android"', {
3964 'targets': [ 3987 'targets': [
3965 { 3988 {
3966 # GN: //chrome/browser:jni_headers 3989 # GN: //chrome/browser:jni_headers
3967 'target_name': 'chrome_browser_jni_headers', 3990 'target_name': 'chrome_browser_jni_headers',
3968 'type': 'none', 3991 'type': 'none',
3969 'sources': [ '<@(chrome_browser_jni_sources)' ], 3992 'sources': [ '<@(chrome_browser_jni_sources)' ],
3970 'variables': { 3993 'variables': {
(...skipping 147 matching lines...) Expand 10 before | Expand all | Expand 10 after
4118 '../components/components.gyp:omnibox_browser', 4141 '../components/components.gyp:omnibox_browser',
4119 '../components/components.gyp:rlz', 4142 '../components/components.gyp:rlz',
4120 '../components/components.gyp:search_engines', 4143 '../components/components.gyp:search_engines',
4121 '../rlz/rlz.gyp:rlz_lib', 4144 '../rlz/rlz.gyp:rlz_lib',
4122 ], 4145 ],
4123 }, 4146 },
4124 ], 4147 ],
4125 }], 4148 }],
4126 ], 4149 ],
4127 } 4150 }
OLDNEW
« no previous file with comments | « chrome/browser/safe_browsing/incident_reporting/state_store_unittest.cc ('k') | chrome/chrome_tests_unit.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698