| OLD | NEW |
| 1 # Copyright 2016 The Chromium Authors. All rights reserved. | 1 # Copyright 2016 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 static_library("browser") { | 5 static_library("browser") { |
| 6 sources = [ | 6 sources = [ |
| 7 "activation_state_computing_navigation_throttle.cc", | 7 "activation_state_computing_navigation_throttle.cc", |
| 8 "activation_state_computing_navigation_throttle.h", | 8 "activation_state_computing_navigation_throttle.h", |
| 9 "async_document_subresource_filter.cc", | 9 "async_document_subresource_filter.cc", |
| 10 "async_document_subresource_filter.h", | 10 "async_document_subresource_filter.h", |
| 11 "content_ruleset_service_delegate.cc", | 11 "content_ruleset_service_delegate.cc", |
| 12 "content_ruleset_service_delegate.h", | 12 "content_ruleset_service_delegate.h", |
| 13 "content_subresource_filter_driver_factory.cc", | 13 "content_subresource_filter_driver_factory.cc", |
| 14 "content_subresource_filter_driver_factory.h", | 14 "content_subresource_filter_driver_factory.h", |
| 15 "subframe_navigation_filtering_throttle.cc", | 15 "subframe_navigation_filtering_throttle.cc", |
| 16 "subframe_navigation_filtering_throttle.h", | 16 "subframe_navigation_filtering_throttle.h", |
| 17 "subresource_filter_safe_browsing_activation_throttle.cc", |
| 18 "subresource_filter_safe_browsing_activation_throttle.h", |
| 17 "verified_ruleset_dealer.cc", | 19 "verified_ruleset_dealer.cc", |
| 18 "verified_ruleset_dealer.h", | 20 "verified_ruleset_dealer.h", |
| 19 ] | 21 ] |
| 20 deps = [ | 22 deps = [ |
| 21 "//base", | 23 "//base", |
| 24 "//components/safe_browsing_db:database_manager", |
| 22 "//components/safe_browsing_db:util", | 25 "//components/safe_browsing_db:util", |
| 26 "//components/safe_browsing_db:v4_local_database_manager", |
| 23 "//components/subresource_filter/content/common", | 27 "//components/subresource_filter/content/common", |
| 24 "//components/subresource_filter/core/browser", | 28 "//components/subresource_filter/core/browser", |
| 25 "//components/subresource_filter/core/common", | 29 "//components/subresource_filter/core/common", |
| 26 "//content/public/browser", | 30 "//content/public/browser", |
| 27 "//content/public/common", | 31 "//content/public/common", |
| 28 "//ipc", | 32 "//ipc", |
| 29 "//net", | 33 "//net", |
| 30 "//url", | 34 "//url", |
| 31 ] | 35 ] |
| 32 public_deps = [ | 36 public_deps = [ |
| (...skipping 17 matching lines...) Expand all Loading... |
| 50 "//components/subresource_filter/core/browser", | 54 "//components/subresource_filter/core/browser", |
| 51 "//components/subresource_filter/core/browser:test_support", | 55 "//components/subresource_filter/core/browser:test_support", |
| 52 "//components/subresource_filter/core/common", | 56 "//components/subresource_filter/core/common", |
| 53 "//components/subresource_filter/core/common:test_support", | 57 "//components/subresource_filter/core/common:test_support", |
| 54 "//content/test:test_support", | 58 "//content/test:test_support", |
| 55 "//ipc", | 59 "//ipc", |
| 56 "//ipc:test_support", | 60 "//ipc:test_support", |
| 57 "//testing/gtest", | 61 "//testing/gtest", |
| 58 ] | 62 ] |
| 59 } | 63 } |
| OLD | NEW |