| 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", |
| (...skipping 19 matching lines...) Expand all Loading... |
| 30 "//url", | 30 "//url", |
| 31 ] | 31 ] |
| 32 public_deps = [ | 32 public_deps = [ |
| 33 "//ui/base", | 33 "//ui/base", |
| 34 ] | 34 ] |
| 35 } | 35 } |
| 36 | 36 |
| 37 source_set("unit_tests") { | 37 source_set("unit_tests") { |
| 38 testonly = true | 38 testonly = true |
| 39 sources = [ | 39 sources = [ |
| 40 "activation_state_computing_navigation_throttle_unittest.cc", |
| 41 "async_document_subresource_filter_test_utils.cc", |
| 42 "async_document_subresource_filter_test_utils.h", |
| 40 "async_document_subresource_filter_unittest.cc", | 43 "async_document_subresource_filter_unittest.cc", |
| 41 "content_ruleset_service_delegate_unittest.cc", | 44 "content_ruleset_service_delegate_unittest.cc", |
| 42 "content_subresource_filter_driver_factory_unittest.cc", | 45 "content_subresource_filter_driver_factory_unittest.cc", |
| 43 "subframe_navigation_filtering_throttle_unittest.cc", | 46 "subframe_navigation_filtering_throttle_unittest.cc", |
| 44 "verified_ruleset_dealer_unittest.cc", | 47 "verified_ruleset_dealer_unittest.cc", |
| 45 ] | 48 ] |
| 46 deps = [ | 49 deps = [ |
| 47 ":browser", | 50 ":browser", |
| 48 "//base/test:test_support", | 51 "//base/test:test_support", |
| 49 "//components/safe_browsing_db:util", | 52 "//components/safe_browsing_db:util", |
| 50 "//components/subresource_filter/content/common", | 53 "//components/subresource_filter/content/common", |
| 51 "//components/subresource_filter/core/browser", | 54 "//components/subresource_filter/core/browser", |
| 52 "//components/subresource_filter/core/browser:test_support", | 55 "//components/subresource_filter/core/browser:test_support", |
| 53 "//components/subresource_filter/core/common", | 56 "//components/subresource_filter/core/common", |
| 54 "//components/subresource_filter/core/common:test_support", | 57 "//components/subresource_filter/core/common:test_support", |
| 55 "//content/test:test_support", | 58 "//content/test:test_support", |
| 56 "//ipc", | 59 "//ipc", |
| 57 "//ipc:test_support", | 60 "//ipc:test_support", |
| 58 "//testing/gtest", | 61 "//testing/gtest", |
| 59 ] | 62 ] |
| 60 } | 63 } |
| OLD | NEW |