| 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_ruleset_service.cc", | 11 "content_ruleset_service.cc", |
| 12 "content_ruleset_service.h", | 12 "content_ruleset_service.h", |
| 13 "content_subresource_filter_driver_factory.cc", | 13 "content_subresource_filter_driver_factory.cc", |
| 14 "content_subresource_filter_driver_factory.h", | 14 "content_subresource_filter_driver_factory.h", |
| 15 "content_subresource_filter_throttle_manager.cc", |
| 16 "content_subresource_filter_throttle_manager.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 ] |
| 21 deps = [ | 23 deps = [ |
| 22 "//base", | 24 "//base", |
| 23 "//components/safe_browsing_db:util", | 25 "//components/safe_browsing_db:util", |
| 24 "//components/subresource_filter/content/common", | 26 "//components/subresource_filter/content/common", |
| (...skipping 12 matching lines...) Expand all Loading... |
| 37 | 39 |
| 38 source_set("unit_tests") { | 40 source_set("unit_tests") { |
| 39 testonly = true | 41 testonly = true |
| 40 sources = [ | 42 sources = [ |
| 41 "activation_state_computing_navigation_throttle_unittest.cc", | 43 "activation_state_computing_navigation_throttle_unittest.cc", |
| 42 "async_document_subresource_filter_test_utils.cc", | 44 "async_document_subresource_filter_test_utils.cc", |
| 43 "async_document_subresource_filter_test_utils.h", | 45 "async_document_subresource_filter_test_utils.h", |
| 44 "async_document_subresource_filter_unittest.cc", | 46 "async_document_subresource_filter_unittest.cc", |
| 45 "content_ruleset_service_unittest.cc", | 47 "content_ruleset_service_unittest.cc", |
| 46 "content_subresource_filter_driver_factory_unittest.cc", | 48 "content_subresource_filter_driver_factory_unittest.cc", |
| 49 "content_subresource_filter_throttle_manager_unittest.cc", |
| 47 "subframe_navigation_filtering_throttle_unittest.cc", | 50 "subframe_navigation_filtering_throttle_unittest.cc", |
| 48 "verified_ruleset_dealer_unittest.cc", | 51 "verified_ruleset_dealer_unittest.cc", |
| 49 ] | 52 ] |
| 50 deps = [ | 53 deps = [ |
| 51 ":browser", | 54 ":browser", |
| 52 "//base/test:test_support", | 55 "//base/test:test_support", |
| 53 "//components/safe_browsing_db:util", | 56 "//components/safe_browsing_db:util", |
| 54 "//components/subresource_filter/content/common", | 57 "//components/subresource_filter/content/common", |
| 55 "//components/subresource_filter/core/browser", | 58 "//components/subresource_filter/core/browser", |
| 56 "//components/subresource_filter/core/browser:test_support", | 59 "//components/subresource_filter/core/browser:test_support", |
| 57 "//components/subresource_filter/core/common", | 60 "//components/subresource_filter/core/common", |
| 58 "//components/subresource_filter/core/common:test_support", | 61 "//components/subresource_filter/core/common:test_support", |
| 59 "//content/test:test_support", | 62 "//content/test:test_support", |
| 60 "//ipc", | 63 "//ipc", |
| 61 "//ipc:test_support", | 64 "//ipc:test_support", |
| 62 "//testing/gtest", | 65 "//testing/gtest", |
| 63 ] | 66 ] |
| 64 } | 67 } |
| OLD | NEW |