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