| 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 "async_document_subresource_filter.cc", | 7 "async_document_subresource_filter.cc", |
| 8 "async_document_subresource_filter.h", | 8 "async_document_subresource_filter.h", |
| 9 "content_ruleset_service_delegate.cc", | 9 "content_ruleset_service_delegate.cc", |
| 10 "content_ruleset_service_delegate.h", | 10 "content_ruleset_service_delegate.h", |
| 11 "content_subresource_filter_driver_factory.cc", | 11 "content_subresource_filter_driver_factory.cc", |
| 12 "content_subresource_filter_driver_factory.h", | 12 "content_subresource_filter_driver_factory.h", |
| 13 "subframe_navigation_filtering_throttle.cc", |
| 14 "subframe_navigation_filtering_throttle.h", |
| 13 "verified_ruleset_dealer.cc", | 15 "verified_ruleset_dealer.cc", |
| 14 "verified_ruleset_dealer.h", | 16 "verified_ruleset_dealer.h", |
| 15 ] | 17 ] |
| 16 deps = [ | 18 deps = [ |
| 17 "//base", | 19 "//base", |
| 18 "//components/safe_browsing_db:util", | 20 "//components/safe_browsing_db:util", |
| 19 "//components/subresource_filter/content/common", | 21 "//components/subresource_filter/content/common", |
| 20 "//components/subresource_filter/core/browser", | 22 "//components/subresource_filter/core/browser", |
| 21 "//components/subresource_filter/core/common", | 23 "//components/subresource_filter/core/common", |
| 22 "//content/public/browser", | 24 "//content/public/browser", |
| (...skipping 23 matching lines...) Expand all Loading... |
| 46 "//components/subresource_filter/core/browser", | 48 "//components/subresource_filter/core/browser", |
| 47 "//components/subresource_filter/core/browser:test_support", | 49 "//components/subresource_filter/core/browser:test_support", |
| 48 "//components/subresource_filter/core/common", | 50 "//components/subresource_filter/core/common", |
| 49 "//components/subresource_filter/core/common:test_support", | 51 "//components/subresource_filter/core/common:test_support", |
| 50 "//content/test:test_support", | 52 "//content/test:test_support", |
| 51 "//ipc", | 53 "//ipc", |
| 52 "//ipc:test_support", | 54 "//ipc:test_support", |
| 53 "//testing/gtest", | 55 "//testing/gtest", |
| 54 ] | 56 ] |
| 55 } | 57 } |
| OLD | NEW |