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

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

Issue 2926473002: Mac Archive Type Sniffing (Closed)
Patch Set: adding signature check file read and removing mods to UDIFParser Created 3 years, 6 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 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/chrome_build.gni") 5 import("//build/config/chrome_build.gni")
6 import("//build/config/crypto.gni") 6 import("//build/config/crypto.gni")
7 import("//build/config/features.gni") 7 import("//build/config/features.gni")
8 import("//build/config/ui.gni") 8 import("//build/config/ui.gni")
9 import("//build/split_static_library.gni") 9 import("//build/split_static_library.gni")
10 import("//chrome/common/features.gni") 10 import("//chrome/common/features.gni")
(...skipping 2386 matching lines...) Expand 10 before | Expand all | Expand 10 after
2397 "safe_browsing/signature_evaluator_mac.mm", 2397 "safe_browsing/signature_evaluator_mac.mm",
2398 "safe_browsing/two_phase_uploader.cc", 2398 "safe_browsing/two_phase_uploader.cc",
2399 "safe_browsing/two_phase_uploader.h", 2399 "safe_browsing/two_phase_uploader.h",
2400 "safe_browsing/v4_test_utils.cc", 2400 "safe_browsing/v4_test_utils.cc",
2401 "safe_browsing/v4_test_utils.h", 2401 "safe_browsing/v4_test_utils.h",
2402 ] 2402 ]
2403 deps += [ "//components/safe_browsing_db:safe_browsing_db" ] 2403 deps += [ "//components/safe_browsing_db:safe_browsing_db" ]
2404 if (is_win) { 2404 if (is_win) {
2405 deps += [ "//chrome/browser/safe_browsing/incident_reporting:state_store _data_proto" ] 2405 deps += [ "//chrome/browser/safe_browsing/incident_reporting:state_store _data_proto" ]
2406 } 2406 }
2407 if (is_mac) {
Jialiu Lin 2017/06/13 20:55:38 nit: move this section right after line 2402. sour
mortonm 2017/06/13 22:09:44 Done.
2408 sources += [
2409 "safe_browsing/mac_archive_type_sniffer.cc",
2410 "safe_browsing/mac_archive_type_sniffer.h",
2411 ]
2412 }
2407 } else if (safe_browsing_mode == 2) { 2413 } else if (safe_browsing_mode == 2) {
2408 sources += [ 2414 sources += [
2409 "loader/safe_browsing_resource_throttle.cc", 2415 "loader/safe_browsing_resource_throttle.cc",
2410 "loader/safe_browsing_resource_throttle.h", 2416 "loader/safe_browsing_resource_throttle.h",
2411 "safe_browsing/services_delegate_stub.cc", 2417 "safe_browsing/services_delegate_stub.cc",
2412 "safe_browsing/services_delegate_stub.h", 2418 "safe_browsing/services_delegate_stub.h",
2413 ] 2419 ]
2414 deps += [ "//components/safe_browsing_db:safe_browsing_db_mobile" ] 2420 deps += [ "//components/safe_browsing_db:safe_browsing_db_mobile" ]
2415 } 2421 }
2416 } 2422 }
(...skipping 2364 matching lines...) Expand 10 before | Expand all | Expand 10 after
4781 "//components/search_engines", 4787 "//components/search_engines",
4782 "//rlz:rlz_lib", 4788 "//rlz:rlz_lib",
4783 ] 4789 ]
4784 } 4790 }
4785 } 4791 }
4786 4792
4787 service_manifest("preferences_forwarder_manifest") { 4793 service_manifest("preferences_forwarder_manifest") {
4788 name = "preferences_forwarder" 4794 name = "preferences_forwarder"
4789 source = "prefs/forwarder_manifest.json" 4795 source = "prefs/forwarder_manifest.json"
4790 } 4796 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698