| 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 2015 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2026 "safe_browsing/test_safe_browsing_service.cc", | 2026 "safe_browsing/test_safe_browsing_service.cc", |
| 2027 "safe_browsing/test_safe_browsing_service.h", | 2027 "safe_browsing/test_safe_browsing_service.h", |
| 2028 "safe_browsing/threat_details.cc", | 2028 "safe_browsing/threat_details.cc", |
| 2029 "safe_browsing/threat_details.h", | 2029 "safe_browsing/threat_details.h", |
| 2030 "safe_browsing/threat_details_cache.cc", | 2030 "safe_browsing/threat_details_cache.cc", |
| 2031 "safe_browsing/threat_details_cache.h", | 2031 "safe_browsing/threat_details_cache.h", |
| 2032 "safe_browsing/threat_details_history.cc", | 2032 "safe_browsing/threat_details_history.cc", |
| 2033 "safe_browsing/threat_details_history.h", | 2033 "safe_browsing/threat_details_history.h", |
| 2034 "safe_browsing/ui_manager.cc", | 2034 "safe_browsing/ui_manager.cc", |
| 2035 "safe_browsing/ui_manager.h", | 2035 "safe_browsing/ui_manager.h", |
| 2036 "safe_browsing/v4_test_utils.cc", |
| 2037 "safe_browsing/v4_test_utils.h", |
| 2036 ] | 2038 ] |
| 2037 deps += [ | 2039 deps += [ |
| 2038 "//chrome/browser/safe_browsing:chunk_proto", | 2040 "//chrome/browser/safe_browsing:chunk_proto", |
| 2039 "//chrome/common/safe_browsing:proto", | 2041 "//chrome/common/safe_browsing:proto", |
| 2040 "//components/safe_browsing:safe_browsing", | 2042 "//components/safe_browsing:safe_browsing", |
| 2041 "//components/safe_browsing/common:common", | 2043 "//components/safe_browsing/common:common", |
| 2042 "//components/safe_browsing_db:metadata_proto", | 2044 "//components/safe_browsing_db:metadata_proto", |
| 2043 ] | 2045 ] |
| 2044 if (safe_browsing_mode == 1) { | 2046 if (safe_browsing_mode == 1) { |
| 2045 # "Safe Browsing Full" files in addition to the "basic" ones to use for | 2047 # "Safe Browsing Full" files in addition to the "basic" ones to use for |
| (...skipping 2478 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 4524 "media/pepper_cdm_test_constants.cc", | 4526 "media/pepper_cdm_test_constants.cc", |
| 4525 "media/pepper_cdm_test_constants.h", | 4527 "media/pepper_cdm_test_constants.h", |
| 4526 ] | 4528 ] |
| 4527 } | 4529 } |
| 4528 } | 4530 } |
| 4529 | 4531 |
| 4530 service_manifest("preferences_manifest") { | 4532 service_manifest("preferences_manifest") { |
| 4531 name = "preferences" | 4533 name = "preferences" |
| 4532 source = "prefs/preferences_manifest.json" | 4534 source = "prefs/preferences_manifest.json" |
| 4533 } | 4535 } |
| OLD | NEW |