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

Side by Side Diff: chrome/browser/BUILD.gn

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: changes for sky 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
« no previous file with comments | « no previous file | chrome/browser/renderer_host/chrome_resource_dispatcher_host_delegate.cc » ('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 2014 The Chromium Authors. All rights reserved. 1 # Copyright 2014 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 import("//build/config/crypto.gni") 5 import("//build/config/crypto.gni")
6 import("//build/config/features.gni") 6 import("//build/config/features.gni")
7 import("//build/config/ui.gni") 7 import("//build/config/ui.gni")
8 import("//components/nacl/nacl_defines.gni") 8 import("//components/nacl/nacl_defines.gni")
9 # //build/config/android/rules.gni imports //tools/grit/grit_rule.gni, which 9 # //build/config/android/rules.gni imports //tools/grit/grit_rule.gni, which
10 # produces a conflict for the "grit" template so we have to only include one. 10 # produces a conflict for the "grit" template so we have to only include one.
(...skipping 305 matching lines...) Expand 10 before | Expand all | Expand 10 after
316 "//ppapi:ppapi_ipc", 316 "//ppapi:ppapi_ipc",
317 "//third_party/adobe/flash:flapper_version_h", 317 "//third_party/adobe/flash:flapper_version_h",
318 ] 318 ]
319 } 319 }
320 if (safe_browsing_mode != 0) { 320 if (safe_browsing_mode != 0) {
321 sources += rebase_path( 321 sources += rebase_path(
322 gypi_values.chrome_browser_basic_safe_browsing_sources, 322 gypi_values.chrome_browser_basic_safe_browsing_sources,
323 ".", "//chrome") 323 ".", "//chrome")
324 deps += [ 324 deps += [
325 "//chrome/browser/safe_browsing:chunk_proto", 325 "//chrome/browser/safe_browsing:chunk_proto",
326 "//chrome/browser/safe_browsing:metadata_proto",
326 "//chrome/browser/safe_browsing:report_proto", 327 "//chrome/browser/safe_browsing:report_proto",
327 ] 328 ]
328 if (safe_browsing_mode == 1) { 329 if (safe_browsing_mode == 1) {
329 sources += rebase_path( 330 sources += rebase_path(
330 gypi_values.chrome_browser_full_safe_browsing_sources, 331 gypi_values.chrome_browser_full_safe_browsing_sources,
331 ".", "//chrome") 332 ".", "//chrome")
332 defines += [ "FULL_SAFE_BROWSING" ] 333 defines += [ "FULL_SAFE_BROWSING" ]
333 deps += [ 334 deps += [
334 "//chrome/common/safe_browsing:proto", 335 "//chrome/common/safe_browsing:proto",
335 ] 336 ]
(...skipping 592 matching lines...) Expand 10 before | Expand all | Expand 10 after
928 ] 929 ]
929 } 930 }
930 931
931 if (enable_wifi_bootstrapping) { 932 if (enable_wifi_bootstrapping) {
932 sources += [ 933 sources += [
933 "local_discovery/wifi/mock_wifi_manager.cc", 934 "local_discovery/wifi/mock_wifi_manager.cc",
934 "local_discovery/wifi/mock_wifi_manager.h", 935 "local_discovery/wifi/mock_wifi_manager.h",
935 ] 936 ]
936 } 937 }
937 } 938 }
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/renderer_host/chrome_resource_dispatcher_host_delegate.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698