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

Side by Side Diff: chrome/chrome_browser.gypi

Issue 8536041: This CL integrates the new SafeBrowsing download service class (Closed) Base URL: http://git.chromium.org/git/chromium.git@trunk
Patch Set: Fix uninitialized variable issue. Created 9 years, 1 month 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 | Annotate | Revision Log
OLDNEW
1 # Copyright (c) 2011 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2011 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 'targets': [ 6 'targets': [
7 { 7 {
8 'target_name': 'browser', 8 'target_name': 'browser',
9 'type': 'static_library', 9 'type': 'static_library',
10 'dependencies': [ 10 'dependencies': [
(...skipping 871 matching lines...) Expand 10 before | Expand all | Expand 10 after
882 'browser/download/download_item_model.cc', 882 'browser/download/download_item_model.cc',
883 'browser/download/download_item_model.h', 883 'browser/download/download_item_model.h',
884 'browser/download/download_prefs.cc', 884 'browser/download/download_prefs.cc',
885 'browser/download/download_prefs.h', 885 'browser/download/download_prefs.h',
886 'browser/download/download_request_infobar_delegate.cc', 886 'browser/download/download_request_infobar_delegate.cc',
887 'browser/download/download_request_infobar_delegate.h', 887 'browser/download/download_request_infobar_delegate.h',
888 'browser/download/download_request_limiter.cc', 888 'browser/download/download_request_limiter.cc',
889 'browser/download/download_request_limiter.h', 889 'browser/download/download_request_limiter.h',
890 'browser/download/download_request_limiter_observer.cc', 890 'browser/download/download_request_limiter_observer.cc',
891 'browser/download/download_request_limiter_observer.h', 891 'browser/download/download_request_limiter_observer.h',
892 'browser/download/download_safe_browsing_client.cc',
893 'browser/download/download_safe_browsing_client.h',
894 'browser/download/download_service.cc', 892 'browser/download/download_service.cc',
895 'browser/download/download_service.h', 893 'browser/download/download_service.h',
896 'browser/download/download_service_factory.cc', 894 'browser/download/download_service_factory.cc',
897 'browser/download/download_service_factory.h', 895 'browser/download/download_service_factory.h',
898 'browser/download/download_shelf.h', 896 'browser/download/download_shelf.h',
899 'browser/download/download_shelf_context_menu.cc', 897 'browser/download/download_shelf_context_menu.cc',
900 'browser/download/download_shelf_context_menu.h', 898 'browser/download/download_shelf_context_menu.h',
901 'browser/download/download_started_animation.h', 899 'browser/download/download_started_animation.h',
902 'browser/download/download_throttling_resource_handler.cc', 900 'browser/download/download_throttling_resource_handler.cc',
903 'browser/download/download_throttling_resource_handler.h', 901 'browser/download/download_throttling_resource_handler.h',
(...skipping 3109 matching lines...) Expand 10 before | Expand all | Expand 10 after
4013 }], 4011 }],
4014 ['safe_browsing==1', { 4012 ['safe_browsing==1', {
4015 'defines': [ 4013 'defines': [
4016 'ENABLE_SAFE_BROWSING', 4014 'ENABLE_SAFE_BROWSING',
4017 ], 4015 ],
4018 }, { # safe_browsing==0 4016 }, { # safe_browsing==0
4019 'dependencies!': [ 4017 'dependencies!': [
4020 'safe_browsing_report_proto', 4018 'safe_browsing_report_proto',
4021 ], 4019 ],
4022 'sources!': [ 4020 'sources!': [
4023 'browser/download/download_safe_browsing_client.cc',
4024 'browser/download/download_safe_browsing_client.h',
4025 'browser/renderer_host/safe_browsing_resource_handler.cc', 4021 'browser/renderer_host/safe_browsing_resource_handler.cc',
4026 'browser/renderer_host/safe_browsing_resource_handler.h', 4022 'browser/renderer_host/safe_browsing_resource_handler.h',
4027 ], 4023 ],
4028 'sources/': [ 4024 'sources/': [
4029 ['exclude', '^browser/safe_browsing/'], 4025 ['exclude', '^browser/safe_browsing/'],
4030 ], 4026 ],
4031 }], 4027 }],
4032 ['chromeos==0', { 4028 ['chromeos==0', {
4033 'sources/': [ 4029 'sources/': [
4034 ['exclude', '^browser/chromeos'], 4030 ['exclude', '^browser/chromeos'],
(...skipping 1208 matching lines...) Expand 10 before | Expand all | Expand 10 after
5243 'type': 'static_library', 5239 'type': 'static_library',
5244 'sources': [ 'browser/history/in_memory_url_index_cache.proto' ], 5240 'sources': [ 'browser/history/in_memory_url_index_cache.proto' ],
5245 'variables': { 5241 'variables': {
5246 'proto_in_dir': 'browser/history', 5242 'proto_in_dir': 'browser/history',
5247 'proto_out_dir': 'chrome/browser/history', 5243 'proto_out_dir': 'chrome/browser/history',
5248 }, 5244 },
5249 'includes': [ '../build/protoc.gypi' ] 5245 'includes': [ '../build/protoc.gypi' ]
5250 }, 5246 },
5251 ], 5247 ],
5252 } 5248 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698