| 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", |
| 8 "async_document_subresource_filter.h", |
| 7 "content_ruleset_service_delegate.cc", | 9 "content_ruleset_service_delegate.cc", |
| 8 "content_ruleset_service_delegate.h", | 10 "content_ruleset_service_delegate.h", |
| 9 "content_subresource_filter_driver.cc", | 11 "content_subresource_filter_driver.cc", |
| 10 "content_subresource_filter_driver.h", | 12 "content_subresource_filter_driver.h", |
| 11 "content_subresource_filter_driver_factory.cc", | 13 "content_subresource_filter_driver_factory.cc", |
| 12 "content_subresource_filter_driver_factory.h", | 14 "content_subresource_filter_driver_factory.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 = [ |
| (...skipping 27 matching lines...) Expand all Loading... |
| 44 "//components/subresource_filter/core/browser", | 46 "//components/subresource_filter/core/browser", |
| 45 "//components/subresource_filter/core/browser:test_support", | 47 "//components/subresource_filter/core/browser:test_support", |
| 46 "//components/subresource_filter/core/common", | 48 "//components/subresource_filter/core/common", |
| 47 "//components/subresource_filter/core/common:test_support", | 49 "//components/subresource_filter/core/common:test_support", |
| 48 "//content/test:test_support", | 50 "//content/test:test_support", |
| 49 "//ipc", | 51 "//ipc", |
| 50 "//ipc:test_support", | 52 "//ipc:test_support", |
| 51 "//testing/gtest", | 53 "//testing/gtest", |
| 52 ] | 54 ] |
| 53 } | 55 } |
| OLD | NEW |