| 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", |
| 28 "subresource_filter_safe_browsing_client_request.cc", |
| 29 "subresource_filter_safe_browsing_client_request.h", |
| 26 "verified_ruleset_dealer.cc", | 30 "verified_ruleset_dealer.cc", |
| 27 "verified_ruleset_dealer.h", | 31 "verified_ruleset_dealer.h", |
| 28 ] | 32 ] |
| 29 deps = [ | 33 deps = [ |
| 30 "//base", | 34 "//base", |
| 31 "//components/safe_browsing_db:database_manager", | 35 "//components/safe_browsing_db:database_manager", |
| 32 "//components/safe_browsing_db:util", | 36 "//components/safe_browsing_db:util", |
| 33 "//components/safe_browsing_db:v4_local_database_manager", | 37 "//components/safe_browsing_db:v4_local_database_manager", |
| 34 "//components/subresource_filter/content/common", | 38 "//components/subresource_filter/content/common", |
| 35 "//components/subresource_filter/core/browser", | 39 "//components/subresource_filter/core/browser", |
| (...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 87 "//components/subresource_filter/core/browser", | 91 "//components/subresource_filter/core/browser", |
| 88 "//components/subresource_filter/core/browser:test_support", | 92 "//components/subresource_filter/core/browser:test_support", |
| 89 "//components/subresource_filter/core/common", | 93 "//components/subresource_filter/core/common", |
| 90 "//components/subresource_filter/core/common:test_support", | 94 "//components/subresource_filter/core/common:test_support", |
| 91 "//content/test:test_support", | 95 "//content/test:test_support", |
| 92 "//ipc", | 96 "//ipc", |
| 93 "//ipc:test_support", | 97 "//ipc:test_support", |
| 94 "//testing/gtest", | 98 "//testing/gtest", |
| 95 ] | 99 ] |
| 96 } | 100 } |
| OLD | NEW |