| 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", |
| 12 "content_activation_list_utils.h", |
| 11 "content_ruleset_service.cc", | 13 "content_ruleset_service.cc", |
| 12 "content_ruleset_service.h", | 14 "content_ruleset_service.h", |
| 13 "content_subresource_filter_driver_factory.cc", | 15 "content_subresource_filter_driver_factory.cc", |
| 14 "content_subresource_filter_driver_factory.h", | 16 "content_subresource_filter_driver_factory.h", |
| 15 "subframe_navigation_filtering_throttle.cc", | 17 "subframe_navigation_filtering_throttle.cc", |
| 16 "subframe_navigation_filtering_throttle.h", | 18 "subframe_navigation_filtering_throttle.h", |
| 17 "subresource_filter_client.h", | 19 "subresource_filter_client.h", |
| 18 "verified_ruleset_dealer.cc", | 20 "verified_ruleset_dealer.cc", |
| 19 "verified_ruleset_dealer.h", | 21 "verified_ruleset_dealer.h", |
| 20 ] | 22 ] |
| (...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 55 "//components/subresource_filter/core/browser", | 57 "//components/subresource_filter/core/browser", |
| 56 "//components/subresource_filter/core/browser:test_support", | 58 "//components/subresource_filter/core/browser:test_support", |
| 57 "//components/subresource_filter/core/common", | 59 "//components/subresource_filter/core/common", |
| 58 "//components/subresource_filter/core/common:test_support", | 60 "//components/subresource_filter/core/common:test_support", |
| 59 "//content/test:test_support", | 61 "//content/test:test_support", |
| 60 "//ipc", | 62 "//ipc", |
| 61 "//ipc:test_support", | 63 "//ipc:test_support", |
| 62 "//testing/gtest", | 64 "//testing/gtest", |
| 63 ] | 65 ] |
| 64 } | 66 } |
| OLD | NEW |