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

Side by Side Diff: chrome/chrome_renderer.gypi

Issue 1402783005: Remove safe_browsing=2 functionality, replace with =3 mode. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix up histograms Created 5 years, 2 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
« no previous file with comments | « chrome/chrome_browser.gypi ('k') | chrome/chrome_tests_unit.gypi » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 # Copyright (c) 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 'chrome_renderer_sources': [ 7 'chrome_renderer_sources': [
8 'renderer/banners/app_banner_client.cc', 8 'renderer/banners/app_banner_client.cc',
9 'renderer/banners/app_banner_client.h', 9 'renderer/banners/app_banner_client.h',
10 'renderer/benchmarking_extension.cc', 10 'renderer/benchmarking_extension.cc',
(...skipping 167 matching lines...) Expand 10 before | Expand all | Expand 10 after
178 'renderer/plugins/chrome_plugin_placeholder.h', 178 'renderer/plugins/chrome_plugin_placeholder.h',
179 'renderer/plugins/plugin_preroller.cc', 179 'renderer/plugins/plugin_preroller.cc',
180 'renderer/plugins/plugin_preroller.h', 180 'renderer/plugins/plugin_preroller.h',
181 ], 181 ],
182 # For safe_browsing==1 or safe_browsing==2. 182 # For safe_browsing==1 or safe_browsing==2.
183 'chrome_renderer_basic_safe_browsing_sources': [ 183 'chrome_renderer_basic_safe_browsing_sources': [
184 'renderer/safe_browsing/malware_dom_details.cc', 184 'renderer/safe_browsing/malware_dom_details.cc',
185 'renderer/safe_browsing/malware_dom_details.h', 185 'renderer/safe_browsing/malware_dom_details.h',
186 ], 186 ],
187 # For safe_browsing==1 only. 187 # For safe_browsing==1 only.
188 'chrome_renderer_safe_browsing_sources': [ 188 'chrome_renderer_full_safe_browsing_sources': [
189 'renderer/safe_browsing/feature_extractor_clock.cc', 189 'renderer/safe_browsing/feature_extractor_clock.cc',
190 'renderer/safe_browsing/feature_extractor_clock.h', 190 'renderer/safe_browsing/feature_extractor_clock.h',
191 'renderer/safe_browsing/features.cc', 191 'renderer/safe_browsing/features.cc',
192 'renderer/safe_browsing/features.h', 192 'renderer/safe_browsing/features.h',
193 'renderer/safe_browsing/murmurhash3_util.cc', 193 'renderer/safe_browsing/murmurhash3_util.cc',
194 'renderer/safe_browsing/murmurhash3_util.h', 194 'renderer/safe_browsing/murmurhash3_util.h',
195 'renderer/safe_browsing/phishing_classifier.cc', 195 'renderer/safe_browsing/phishing_classifier.cc',
196 'renderer/safe_browsing/phishing_classifier.h', 196 'renderer/safe_browsing/phishing_classifier.h',
197 'renderer/safe_browsing/phishing_classifier_delegate.cc', 197 'renderer/safe_browsing/phishing_classifier_delegate.cc',
198 'renderer/safe_browsing/phishing_classifier_delegate.h', 198 'renderer/safe_browsing/phishing_classifier_delegate.h',
(...skipping 103 matching lines...) Expand 10 before | Expand all | Expand 10 after
302 '../ppapi/ppapi_internal.gyp:ppapi_shared', 302 '../ppapi/ppapi_internal.gyp:ppapi_shared',
303 ], 303 ],
304 }], 304 }],
305 ['safe_browsing==1 or safe_browsing==2', { 305 ['safe_browsing==1 or safe_browsing==2', {
306 'sources': [ 306 'sources': [
307 '<@(chrome_renderer_basic_safe_browsing_sources)', 307 '<@(chrome_renderer_basic_safe_browsing_sources)',
308 ], 308 ],
309 }], 309 }],
310 ['safe_browsing==1', { 310 ['safe_browsing==1', {
311 'sources': [ 311 'sources': [
312 '<@(chrome_renderer_safe_browsing_sources)', 312 '<@(chrome_renderer_full_safe_browsing_sources)',
313 ], 313 ],
314 'dependencies': [ 314 'dependencies': [
315 'safe_browsing_proto', 315 'safe_browsing_proto',
316 '../third_party/smhasher/smhasher.gyp:murmurhash3', 316 '../third_party/smhasher/smhasher.gyp:murmurhash3',
317 ], 317 ],
318 }], 318 }],
319 ['enable_extensions==1', { 319 ['enable_extensions==1', {
320 'dependencies': [ 320 'dependencies': [
321 '../extensions/extensions.gyp:extensions_renderer', 321 '../extensions/extensions.gyp:extensions_renderer',
322 '../extensions/extensions_resources.gyp:extensions_resources', 322 '../extensions/extensions_resources.gyp:extensions_resources',
(...skipping 77 matching lines...) Expand 10 before | Expand all | Expand 10 after
400 'export_dependent_settings': [ 400 'export_dependent_settings': [
401 '<(allocator_target)', 401 '<(allocator_target)',
402 ], 402 ],
403 }], 403 }],
404 ], 404 ],
405 }], 405 }],
406 ], 406 ],
407 }, 407 },
408 ], 408 ],
409 } 409 }
OLDNEW
« no previous file with comments | « chrome/chrome_browser.gypi ('k') | chrome/chrome_tests_unit.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698