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

Side by Side Diff: chrome/chrome_browser.gypi

Issue 586793003: Safebrowsing: Honor the metadata from malware fullhash results in SB API 3.0. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: . Created 6 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 3055 matching lines...) Expand 10 before | Expand all | Expand 10 after
3066 '../components/components.gyp:pdf_browser', 3066 '../components/components.gyp:pdf_browser',
3067 '../ppapi/ppapi_internal.gyp:ppapi_ipc', 3067 '../ppapi/ppapi_internal.gyp:ppapi_ipc',
3068 '../third_party/adobe/flash/flash_player.gyp:flapper_version_h', 3068 '../third_party/adobe/flash/flash_player.gyp:flapper_version_h',
3069 ], 3069 ],
3070 'sources': [ '<@(chrome_browser_plugins_sources)' ], 3070 'sources': [ '<@(chrome_browser_plugins_sources)' ],
3071 }], 3071 }],
3072 ['safe_browsing != 0', { 3072 ['safe_browsing != 0', {
3073 'sources': [ '<@(chrome_browser_basic_safe_browsing_sources)' ], 3073 'sources': [ '<@(chrome_browser_basic_safe_browsing_sources)' ],
3074 'dependencies': [ 3074 'dependencies': [
3075 'safe_browsing_chunk_proto', 3075 'safe_browsing_chunk_proto',
3076 'safe_browsing_metadata_proto',
3076 'safe_browsing_report_proto', 3077 'safe_browsing_report_proto',
3077 ], 3078 ],
3078 'conditions': [ 3079 'conditions': [
3079 ['safe_browsing == 1', { 3080 ['safe_browsing == 1', {
3080 'sources': [ '<@(chrome_browser_full_safe_browsing_sources)' ], 3081 'sources': [ '<@(chrome_browser_full_safe_browsing_sources)' ],
3081 'defines': [ 3082 'defines': [
3082 'FULL_SAFE_BROWSING', 3083 'FULL_SAFE_BROWSING',
3083 ], 3084 ],
3084 'dependencies': [ 3085 'dependencies': [
3085 'safe_browsing_proto', 3086 'safe_browsing_proto',
(...skipping 336 matching lines...) Expand 10 before | Expand all | Expand 10 after
3422 'target_name': 'safe_browsing_chunk_proto', 3423 'target_name': 'safe_browsing_chunk_proto',
3423 'type': 'static_library', 3424 'type': 'static_library',
3424 'sources': [ 'browser/safe_browsing/chunk.proto' ], 3425 'sources': [ 'browser/safe_browsing/chunk.proto' ],
3425 'variables': { 3426 'variables': {
3426 'proto_in_dir': 'browser/safe_browsing', 3427 'proto_in_dir': 'browser/safe_browsing',
3427 'proto_out_dir': 'chrome/browser/safe_browsing', 3428 'proto_out_dir': 'chrome/browser/safe_browsing',
3428 }, 3429 },
3429 'includes': [ '../build/protoc.gypi' ] 3430 'includes': [ '../build/protoc.gypi' ]
3430 }, 3431 },
3431 { 3432 {
3433 # Protobuf compiler / generator for the safebrowsing full hash metadata
3434 # protocol buffer.
3435 # GN version: //chrome/browser/safe_browsing:metadata_proto
3436 'target_name': 'safe_browsing_metadata_proto',
3437 'type': 'static_library',
3438 'sources': [ 'browser/safe_browsing/metadata.proto' ],
3439 'variables': {
3440 'proto_in_dir': 'browser/safe_browsing',
3441 'proto_out_dir': 'chrome/browser/safe_browsing',
3442 },
3443 'includes': [ '../build/protoc.gypi' ]
3444 },
3445 {
3432 # Protobuf compiler / generator for the safebrowsing reporting 3446 # Protobuf compiler / generator for the safebrowsing reporting
3433 # protocol buffer. 3447 # protocol buffer.
3434 # GN version: //chrome/browser/safe_browsing:report_proto 3448 # GN version: //chrome/browser/safe_browsing:report_proto
3435 'target_name': 'safe_browsing_report_proto', 3449 'target_name': 'safe_browsing_report_proto',
3436 'type': 'static_library', 3450 'type': 'static_library',
3437 'sources': [ 'browser/safe_browsing/report.proto' ], 3451 'sources': [ 'browser/safe_browsing/report.proto' ],
3438 'variables': { 3452 'variables': {
3439 'proto_in_dir': 'browser/safe_browsing', 3453 'proto_in_dir': 'browser/safe_browsing',
3440 'proto_out_dir': 'chrome/browser/safe_browsing', 3454 'proto_out_dir': 'chrome/browser/safe_browsing',
3441 }, 3455 },
(...skipping 112 matching lines...) Expand 10 before | Expand all | Expand 10 after
3554 'variables': { 3568 'variables': {
3555 'proto_in_dir': 'browser/sync_file_system/drive_backend', 3569 'proto_in_dir': 'browser/sync_file_system/drive_backend',
3556 'proto_out_dir': 'chrome/browser/sync_file_system/drive_backend', 3570 'proto_out_dir': 'chrome/browser/sync_file_system/drive_backend',
3557 }, 3571 },
3558 'includes': [ '../build/protoc.gypi' ] 3572 'includes': [ '../build/protoc.gypi' ]
3559 }, 3573 },
3560 ], 3574 ],
3561 },], 3575 },],
3562 ], 3576 ],
3563 } 3577 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698