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

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

Issue 2683413003: Introduce AsyncDocumentSubresourceFilter. (Closed)
Patch Set: Created 3 years, 10 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 "async_document_subresource_filter.cc",
8 "async_document_subresource_filter.h",
7 "content_ruleset_service_delegate.cc", 9 "content_ruleset_service_delegate.cc",
8 "content_ruleset_service_delegate.h", 10 "content_ruleset_service_delegate.h",
9 "content_subresource_filter_driver.cc", 11 "content_subresource_filter_driver.cc",
10 "content_subresource_filter_driver.h", 12 "content_subresource_filter_driver.h",
11 "content_subresource_filter_driver_factory.cc", 13 "content_subresource_filter_driver_factory.cc",
12 "content_subresource_filter_driver_factory.h", 14 "content_subresource_filter_driver_factory.h",
13 "verified_ruleset_dealer.cc", 15 "verified_ruleset_dealer.cc",
14 "verified_ruleset_dealer.h", 16 "verified_ruleset_dealer.h",
15 ] 17 ]
16 deps = [ 18 deps = [
(...skipping 27 matching lines...) Expand all
44 "//components/subresource_filter/core/browser", 46 "//components/subresource_filter/core/browser",
45 "//components/subresource_filter/core/browser:test_support", 47 "//components/subresource_filter/core/browser:test_support",
46 "//components/subresource_filter/core/common", 48 "//components/subresource_filter/core/common",
47 "//components/subresource_filter/core/common:test_support", 49 "//components/subresource_filter/core/common:test_support",
48 "//content/test:test_support", 50 "//content/test:test_support",
49 "//ipc", 51 "//ipc",
50 "//ipc:test_support", 52 "//ipc:test_support",
51 "//testing/gtest", 53 "//testing/gtest",
52 ] 54 ]
53 } 55 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698