| 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 source_set("browser") { | 5 static_library("browser") { |
| 6 sources = [ | 6 sources = [ |
| 7 "content_ruleset_distributor.cc", | 7 "content_ruleset_distributor.cc", |
| 8 "content_ruleset_distributor.h", | 8 "content_ruleset_distributor.h", |
| 9 "content_subresource_filter_driver.cc", | 9 "content_subresource_filter_driver.cc", |
| 10 "content_subresource_filter_driver.h", | 10 "content_subresource_filter_driver.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 "subresource_filter_navigation_throttle.cc", | 13 "subresource_filter_navigation_throttle.cc", |
| 14 "subresource_filter_navigation_throttle.h", | 14 "subresource_filter_navigation_throttle.h", |
| 15 ] | 15 ] |
| (...skipping 23 matching lines...) Expand all Loading... |
| 39 "//components/safe_browsing_db:util", | 39 "//components/safe_browsing_db:util", |
| 40 "//components/subresource_filter/content/common", | 40 "//components/subresource_filter/content/common", |
| 41 "//components/subresource_filter/core/browser", | 41 "//components/subresource_filter/core/browser", |
| 42 "//components/subresource_filter/core/browser:test_support", | 42 "//components/subresource_filter/core/browser:test_support", |
| 43 "//content/test:test_support", | 43 "//content/test:test_support", |
| 44 "//ipc", | 44 "//ipc", |
| 45 "//ipc:test_support", | 45 "//ipc:test_support", |
| 46 "//testing/gtest", | 46 "//testing/gtest", |
| 47 ] | 47 ] |
| 48 } | 48 } |
| OLD | NEW |