Chromium Code Reviews| OLD | NEW |
|---|---|
| 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 2382 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 2393 "safe_browsing/sandboxed_zip_analyzer.h", | 2393 "safe_browsing/sandboxed_zip_analyzer.h", |
| 2394 "safe_browsing/services_delegate_impl.cc", | 2394 "safe_browsing/services_delegate_impl.cc", |
| 2395 "safe_browsing/services_delegate_impl.h", | 2395 "safe_browsing/services_delegate_impl.h", |
| 2396 "safe_browsing/signature_evaluator_mac.h", | 2396 "safe_browsing/signature_evaluator_mac.h", |
| 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 if (is_mac) { | |
|
Robert Sesek
2017/06/14 15:11:43
You can drop this and just include it in the sourc
mortonm
2017/06/14 17:13:15
Done.
| |
| 2404 sources += [ | |
| 2405 "safe_browsing/disk_image_type_sniffer_mac.cc", | |
|
vakh (use Gerrit instead)
2017/06/14 00:53:07
Optional but recommended: Add a target for disk_im
mortonm
2017/06/14 17:13:15
Ok, sounds good. I'm not too familiar with the sem
| |
| 2406 "safe_browsing/disk_image_type_sniffer_mac.h", | |
| 2407 ] | |
| 2408 } | |
| 2403 deps += [ "//components/safe_browsing_db:safe_browsing_db" ] | 2409 deps += [ "//components/safe_browsing_db:safe_browsing_db" ] |
| 2404 if (is_win) { | 2410 if (is_win) { |
| 2405 deps += [ "//chrome/browser/safe_browsing/incident_reporting:state_store _data_proto" ] | 2411 deps += [ "//chrome/browser/safe_browsing/incident_reporting:state_store _data_proto" ] |
| 2406 } | 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", |
| (...skipping 2368 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 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 } |
| OLD | NEW |