| 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 2363 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2374 "safe_browsing/services_delegate_impl.cc", | 2374 "safe_browsing/services_delegate_impl.cc", |
| 2375 "safe_browsing/services_delegate_impl.h", | 2375 "safe_browsing/services_delegate_impl.h", |
| 2376 "safe_browsing/signature_evaluator_mac.h", | 2376 "safe_browsing/signature_evaluator_mac.h", |
| 2377 "safe_browsing/signature_evaluator_mac.mm", | 2377 "safe_browsing/signature_evaluator_mac.mm", |
| 2378 "safe_browsing/two_phase_uploader.cc", | 2378 "safe_browsing/two_phase_uploader.cc", |
| 2379 "safe_browsing/two_phase_uploader.h", | 2379 "safe_browsing/two_phase_uploader.h", |
| 2380 ] | 2380 ] |
| 2381 if (is_win) { | 2381 if (is_win) { |
| 2382 deps += [ "//chrome/browser/safe_browsing/incident_reporting:state_store
_data_proto" ] | 2382 deps += [ "//chrome/browser/safe_browsing/incident_reporting:state_store
_data_proto" ] |
| 2383 } | 2383 } |
| 2384 if (is_mac) { |
| 2385 sources += [ |
| 2386 "safe_browsing/mac_archive_type_sniffer.cc", |
| 2387 "safe_browsing/mac_archive_type_sniffer.h", |
| 2388 ] |
| 2389 } |
| 2384 } else if (safe_browsing_mode == 2) { | 2390 } else if (safe_browsing_mode == 2) { |
| 2385 sources += [ | 2391 sources += [ |
| 2386 "loader/safe_browsing_resource_throttle.cc", | 2392 "loader/safe_browsing_resource_throttle.cc", |
| 2387 "loader/safe_browsing_resource_throttle.h", | 2393 "loader/safe_browsing_resource_throttle.h", |
| 2388 "safe_browsing/services_delegate_stub.cc", | 2394 "safe_browsing/services_delegate_stub.cc", |
| 2389 "safe_browsing/services_delegate_stub.h", | 2395 "safe_browsing/services_delegate_stub.h", |
| 2390 ] | 2396 ] |
| 2391 deps += [ "//components/safe_browsing_db:safe_browsing_db_mobile" ] | 2397 deps += [ "//components/safe_browsing_db:safe_browsing_db_mobile" ] |
| 2392 } | 2398 } |
| 2393 } | 2399 } |
| (...skipping 2381 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 4775 "media/pepper_cdm_test_constants.cc", | 4781 "media/pepper_cdm_test_constants.cc", |
| 4776 "media/pepper_cdm_test_constants.h", | 4782 "media/pepper_cdm_test_constants.h", |
| 4777 ] | 4783 ] |
| 4778 } | 4784 } |
| 4779 } | 4785 } |
| 4780 | 4786 |
| 4781 service_manifest("preferences_forwarder_manifest") { | 4787 service_manifest("preferences_forwarder_manifest") { |
| 4782 name = "preferences_forwarder" | 4788 name = "preferences_forwarder" |
| 4783 source = "prefs/forwarder_manifest.json" | 4789 source = "prefs/forwarder_manifest.json" |
| 4784 } | 4790 } |
| OLD | NEW |