Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(18)

Side by Side Diff: components/subresource_filter/content/browser/BUILD.gn

Issue 2770153004: Unittests for the Safe Browsing Subresource filter navigation throttle (Closed)
Patch Set: . Created 3 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 48 matching lines...) Expand 10 before | Expand all | Expand 10 after
59 59
60 source_set("unit_tests") { 60 source_set("unit_tests") {
61 testonly = true 61 testonly = true
62 sources = [ 62 sources = [
63 "activation_state_computing_navigation_throttle_unittest.cc", 63 "activation_state_computing_navigation_throttle_unittest.cc",
64 "async_document_subresource_filter_unittest.cc", 64 "async_document_subresource_filter_unittest.cc",
65 "content_ruleset_service_unittest.cc", 65 "content_ruleset_service_unittest.cc",
66 "content_subresource_filter_driver_factory_unittest.cc", 66 "content_subresource_filter_driver_factory_unittest.cc",
67 "content_subresource_filter_throttle_manager_unittest.cc", 67 "content_subresource_filter_throttle_manager_unittest.cc",
68 "subframe_navigation_filtering_throttle_unittest.cc", 68 "subframe_navigation_filtering_throttle_unittest.cc",
69 "subresource_filter_safe_browsing_activation_throttle_unittest.cc",
69 "verified_ruleset_dealer_unittest.cc", 70 "verified_ruleset_dealer_unittest.cc",
70 ] 71 ]
71 deps = [ 72 deps = [
72 ":browser", 73 ":browser",
73 ":test_support", 74 ":test_support",
74 "//base/test:test_support", 75 "//base/test:test_support",
76 "//components/safe_browsing_db:test_database_manager",
75 "//components/safe_browsing_db:util", 77 "//components/safe_browsing_db:util",
76 "//components/subresource_filter/content/common", 78 "//components/subresource_filter/content/common",
77 "//components/subresource_filter/core/browser", 79 "//components/subresource_filter/core/browser",
78 "//components/subresource_filter/core/browser:test_support", 80 "//components/subresource_filter/core/browser:test_support",
79 "//components/subresource_filter/core/common", 81 "//components/subresource_filter/core/common",
80 "//components/subresource_filter/core/common:test_support", 82 "//components/subresource_filter/core/common:test_support",
81 "//content/test:test_support", 83 "//content/test:test_support",
82 "//ipc", 84 "//ipc",
83 "//ipc:test_support", 85 "//ipc:test_support",
84 "//testing/gtest", 86 "//testing/gtest",
85 ] 87 ]
86 } 88 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698