| 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_activation_list_utils.cc", | 11 "content_activation_list_utils.cc", |
| 12 "content_activation_list_utils.h", | 12 "content_activation_list_utils.h", |
| 13 "content_ruleset_service.cc", | 13 "content_ruleset_service.cc", |
| 14 "content_ruleset_service.h", | 14 "content_ruleset_service.h", |
| 15 "content_subresource_filter_driver_factory.cc", | 15 "content_subresource_filter_driver_factory.cc", |
| 16 "content_subresource_filter_driver_factory.h", | 16 "content_subresource_filter_driver_factory.h", |
| 17 "content_subresource_filter_throttle_manager.cc", | 17 "content_subresource_filter_throttle_manager.cc", |
| 18 "content_subresource_filter_throttle_manager.h", | 18 "content_subresource_filter_throttle_manager.h", |
| 19 "page_load_statistics.cc", | 19 "page_load_statistics.cc", |
| 20 "page_load_statistics.h", | 20 "page_load_statistics.h", |
| 21 "subframe_navigation_filtering_throttle.cc", | 21 "subframe_navigation_filtering_throttle.cc", |
| 22 "subframe_navigation_filtering_throttle.h", | 22 "subframe_navigation_filtering_throttle.h", |
| 23 "subresource_filter_client.h", | 23 "subresource_filter_client.h", |
| 24 "subresource_filter_safe_browsing_activation_throttle.cc", | 24 "subresource_filter_safe_browsing_activation_throttle.cc", |
| 25 "subresource_filter_safe_browsing_activation_throttle.h", | 25 "subresource_filter_safe_browsing_activation_throttle.h", |
| 26 "subresource_filter_safe_browsing_client.cc", |
| 27 "subresource_filter_safe_browsing_client.h", |
| 26 "verified_ruleset_dealer.cc", | 28 "verified_ruleset_dealer.cc", |
| 27 "verified_ruleset_dealer.h", | 29 "verified_ruleset_dealer.h", |
| 28 ] | 30 ] |
| 29 deps = [ | 31 deps = [ |
| 30 "//base", | 32 "//base", |
| 31 "//components/safe_browsing_db:database_manager", | 33 "//components/safe_browsing_db:database_manager", |
| 32 "//components/safe_browsing_db:util", | 34 "//components/safe_browsing_db:util", |
| 33 "//components/safe_browsing_db:v4_local_database_manager", | 35 "//components/safe_browsing_db:v4_local_database_manager", |
| 34 "//components/subresource_filter/content/common", | 36 "//components/subresource_filter/content/common", |
| 35 "//components/subresource_filter/core/browser", | 37 "//components/subresource_filter/core/browser", |
| (...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 81 "//components/subresource_filter/core/browser", | 83 "//components/subresource_filter/core/browser", |
| 82 "//components/subresource_filter/core/browser:test_support", | 84 "//components/subresource_filter/core/browser:test_support", |
| 83 "//components/subresource_filter/core/common", | 85 "//components/subresource_filter/core/common", |
| 84 "//components/subresource_filter/core/common:test_support", | 86 "//components/subresource_filter/core/common:test_support", |
| 85 "//content/test:test_support", | 87 "//content/test:test_support", |
| 86 "//ipc", | 88 "//ipc", |
| 87 "//ipc:test_support", | 89 "//ipc:test_support", |
| 88 "//testing/gtest", | 90 "//testing/gtest", |
| 89 ] | 91 ] |
| 90 } | 92 } |
| OLD | NEW |